brcm2708: remove CMA_DEBUG
[openwrt.git] / target / linux / brcm2708 / patches-3.18 / 0102-pinctrl-bcm2835-bcm2835_gpio_direction_output-must-s.patch
1 From ce24753015125e11d87764dca9740fde33ccd455 Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Wed, 4 Feb 2015 10:02:24 +0000
4 Subject: [PATCH 102/114] pinctrl-bcm2835: bcm2835_gpio_direction_output must
5  set the value
6
7 ---
8  drivers/pinctrl/pinctrl-bcm2835.c | 9 ++++++++-
9  1 file changed, 8 insertions(+), 1 deletion(-)
10
11 diff --git a/drivers/pinctrl/pinctrl-bcm2835.c b/drivers/pinctrl/pinctrl-bcm2835.c
12 index 962e180..42a4fd5 100644
13 --- a/drivers/pinctrl/pinctrl-bcm2835.c
14 +++ b/drivers/pinctrl/pinctrl-bcm2835.c
15 @@ -355,7 +355,14 @@ static int bcm2835_gpio_get(struct gpio_chip *chip, unsigned offset)
16  static int bcm2835_gpio_direction_output(struct gpio_chip *chip,
17                 unsigned offset, int value)
18  {
19 -       return pinctrl_gpio_direction_output(chip->base + offset);
20 +       struct bcm2835_pinctrl *pc = dev_get_drvdata(chip->dev);
21 +       int ret;
22 +
23 +       ret = pinctrl_gpio_direction_output(chip->base + offset);
24 +       if (ret >= 0)
25 +               bcm2835_gpio_set_bit(pc, value ? GPSET0 : GPCLR0, offset);
26 +
27 +       return ret;
28  }
29  
30  static void bcm2835_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
31 -- 
32 1.8.3.2
33