public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gpiolib: Actually set output state in wm831x_gpio_direction_output()
@ 2010-02-17 18:04 Mark Brown
  2010-02-19 11:52 ` Samuel Ortiz
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Brown @ 2010-02-17 18:04 UTC (permalink / raw)
  To: Samuel Ortiz; +Cc: linux-kernel, Mark Brown, stable

wm831x_gpio_direction_output() ignored the state passed into it.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: stable@kernel.org
---

Ideally this could make it into 2.6.33, though it's not super critical
and it's probably reasonable to handle it via the stable releases.

 drivers/gpio/wm831x-gpio.c |   22 +++++++++++++++-------
 1 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/drivers/gpio/wm831x-gpio.c b/drivers/gpio/wm831x-gpio.c
index b4468b6..c5a00f7 100644
--- a/drivers/gpio/wm831x-gpio.c
+++ b/drivers/gpio/wm831x-gpio.c
@@ -60,23 +60,31 @@ static int wm831x_gpio_get(struct gpio_chip *chip, unsigned offset)
 		return 0;
 }
 
-static int wm831x_gpio_direction_out(struct gpio_chip *chip,
-				     unsigned offset, int value)
+static void wm831x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
 {
 	struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip);
 	struct wm831x *wm831x = wm831x_gpio->wm831x;
 
-	return wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset,
-			       WM831X_GPN_DIR | WM831X_GPN_TRI, 0);
+	wm831x_set_bits(wm831x, WM831X_GPIO_LEVEL, 1 << offset,
+			value << offset);
 }
 
-static void wm831x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
+static int wm831x_gpio_direction_out(struct gpio_chip *chip,
+				     unsigned offset, int value)
 {
 	struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip);
 	struct wm831x *wm831x = wm831x_gpio->wm831x;
+	int ret;
 
-	wm831x_set_bits(wm831x, WM831X_GPIO_LEVEL, 1 << offset,
-			value << offset);
+	ret = wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset,
+			      WM831X_GPN_DIR | WM831X_GPN_TRI, 0);
+	if (ret < 0)
+		return ret;
+
+	/* Can only set GPIO state once it's in output mode */
+	wm831x_gpio_set(chip, offset, value);
+
+	return 0;
 }
 
 static int wm831x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] gpiolib: Actually set output state in wm831x_gpio_direction_output()
  2010-02-17 18:04 [PATCH] gpiolib: Actually set output state in wm831x_gpio_direction_output() Mark Brown
@ 2010-02-19 11:52 ` Samuel Ortiz
  0 siblings, 0 replies; 2+ messages in thread
From: Samuel Ortiz @ 2010-02-19 11:52 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel, stable

Hi Mark,

On Wed, Feb 17, 2010 at 06:04:35PM +0000, Mark Brown wrote:
> wm831x_gpio_direction_output() ignored the state passed into it.
> 
> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
> Cc: stable@kernel.org
> ---
> 
> Ideally this could make it into 2.6.33, though it's not super critical
> and it's probably reasonable to handle it via the stable releases.
Agreed. I'll push it upstream through my for-next branch, thanks.

Cheers,
Samuel.

>  drivers/gpio/wm831x-gpio.c |   22 +++++++++++++++-------
>  1 files changed, 15 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/gpio/wm831x-gpio.c b/drivers/gpio/wm831x-gpio.c
> index b4468b6..c5a00f7 100644
> --- a/drivers/gpio/wm831x-gpio.c
> +++ b/drivers/gpio/wm831x-gpio.c
> @@ -60,23 +60,31 @@ static int wm831x_gpio_get(struct gpio_chip *chip, unsigned offset)
>  		return 0;
>  }
>  
> -static int wm831x_gpio_direction_out(struct gpio_chip *chip,
> -				     unsigned offset, int value)
> +static void wm831x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
>  {
>  	struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip);
>  	struct wm831x *wm831x = wm831x_gpio->wm831x;
>  
> -	return wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset,
> -			       WM831X_GPN_DIR | WM831X_GPN_TRI, 0);
> +	wm831x_set_bits(wm831x, WM831X_GPIO_LEVEL, 1 << offset,
> +			value << offset);
>  }
>  
> -static void wm831x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
> +static int wm831x_gpio_direction_out(struct gpio_chip *chip,
> +				     unsigned offset, int value)
>  {
>  	struct wm831x_gpio *wm831x_gpio = to_wm831x_gpio(chip);
>  	struct wm831x *wm831x = wm831x_gpio->wm831x;
> +	int ret;
>  
> -	wm831x_set_bits(wm831x, WM831X_GPIO_LEVEL, 1 << offset,
> -			value << offset);
> +	ret = wm831x_set_bits(wm831x, WM831X_GPIO1_CONTROL + offset,
> +			      WM831X_GPN_DIR | WM831X_GPN_TRI, 0);
> +	if (ret < 0)
> +		return ret;
> +
> +	/* Can only set GPIO state once it's in output mode */
> +	wm831x_gpio_set(chip, offset, value);
> +
> +	return 0;
>  }
>  
>  static int wm831x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
> -- 
> 1.6.6.1
> 

-- 
Intel Open Source Technology Centre
http://oss.intel.com/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-02-19 11:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-17 18:04 [PATCH] gpiolib: Actually set output state in wm831x_gpio_direction_output() Mark Brown
2010-02-19 11:52 ` Samuel Ortiz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox