From ae386836eabee457ba8b79730820532321d88d96 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Thu, 27 Feb 2014 13:24:57 +0100 Subject: [PATCH] removed unused patch Signed-off-by: Gwenhael Le Moine --- patch/gpio.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 patch/gpio.patch diff --git a/patch/gpio.patch b/patch/gpio.patch deleted file mode 100644 index 541b314..0000000 --- a/patch/gpio.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/drivers/gpio/gpio-sunxi.c -+++ b/drivers/gpio/gpio-sunxi.c -@@ -182,11 +182,9 @@ static int sunxi_gpio_request(struct gpio_chip *chip, unsigned offset) - if ((offset > chip->ngpio - 1) || (offset < 0)) - return -EINVAL; - -- /* Set sysfs exported gpio name (example "gpio254_ph20") */ -- sprintf((char *)(chip->names[offset]), "gpio%d_p%c%d", -- offset+chip->base, -- 'a'+sgpio->data[offset].info.port-1, -- sgpio->data[offset].info.port_num); -+ /* Set sysfs exported gpio name (example "gpio254") */ -+ sprintf((char *)(chip->names[offset]), "gpio%d", -+ offset+chip->base); - - sgpio->data[offset].gpio_handler = gpio_request_ex("gpio_para", - sgpio->data[offset].pin_name);