aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-09-11 17:17:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-09-11 17:17:30 +0000
commit41452d2332fdb6daf11feaedf08b7f9b966e2a38 (patch)
tree4ce02fe3c8bbc516a6fe74eef659b384fed5ebb3 /target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch
parentf41c4f8d6770684f07544dfc1aaa880f82fe0260 (diff)
downloadmaster-187ad058-41452d2332fdb6daf11feaedf08b7f9b966e2a38.tar.gz
master-187ad058-41452d2332fdb6daf11feaedf08b7f9b966e2a38.tar.bz2
master-187ad058-41452d2332fdb6daf11feaedf08b7f9b966e2a38.zip
brcm2708: remove linux 3.18 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46870 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch')
-rw-r--r--target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch b/target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch
deleted file mode 100644
index ebcbe1995d..0000000000
--- a/target/linux/brcm2708/patches-3.18/0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From ce24753015125e11d87764dca9740fde33ccd455 Mon Sep 17 00:00:00 2001
-From: Phil Elwell <phil@raspberrypi.org>
-Date: Wed, 4 Feb 2015 10:02:24 +0000
-Subject: [PATCH 102/114] pinctrl-bcm2835: bcm2835_gpio_direction_output must
- set the value
-
----
- drivers/pinctrl/pinctrl-bcm2835.c | 9 ++++++++-
- 1 file changed, 8 insertions(+), 1 deletion(-)
-
---- a/drivers/pinctrl/pinctrl-bcm2835.c
-+++ b/drivers/pinctrl/pinctrl-bcm2835.c
-@@ -355,7 +355,14 @@ static int bcm2835_gpio_get(struct gpio_
- static int bcm2835_gpio_direction_output(struct gpio_chip *chip,
- unsigned offset, int value)
- {
-- return pinctrl_gpio_direction_output(chip->base + offset);
-+ struct bcm2835_pinctrl *pc = dev_get_drvdata(chip->dev);
-+ int ret;
-+
-+ ret = pinctrl_gpio_direction_output(chip->base + offset);
-+ if (ret >= 0)
-+ bcm2835_gpio_set_bit(pc, value ? GPSET0 : GPCLR0, offset);
-+
-+ return ret;
- }
-
- static void bcm2835_gpio_set(struct gpio_chip *chip, unsigned offset, int value)