public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] OMAP: Store switch state for OUTPUT gpio-switches
@ 2008-06-30 13:32 Mikko Ylinen
  2008-07-03 10:20 ` Tony Lindgren
  0 siblings, 1 reply; 2+ messages in thread
From: Mikko Ylinen @ 2008-06-30 13:32 UTC (permalink / raw)
  To: linux-omap

Signed-off-by: Mikko Ylinen <mikko.k.ylinen@nokia.com>
---
 arch/arm/plat-omap/gpio-switch.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/arm/plat-omap/gpio-switch.c b/arch/arm/plat-omap/gpio-switch.c
index cd96c00..7a61d0e 100644
--- a/arch/arm/plat-omap/gpio-switch.c
+++ b/arch/arm/plat-omap/gpio-switch.c
@@ -131,11 +131,12 @@ static ssize_t gpio_sw_state_store(struct device *dev,
 
 	str = get_sw_str(sw);
 	if (strcmp(state, str[0]) == 0)
-		enable = 0;
+		sw->state = enable = 0;
 	else if (strcmp(state, str[1]) == 0)
-		enable = 1;
+		sw->state = enable = 1;
 	else
 		return -EINVAL;
+
 	if (sw->flags & OMAP_GPIO_SWITCH_FLAG_INVERTED)
 		enable = !enable;
 	omap_set_gpio_dataout(sw->gpio, enable);
-- 
1.5.5.2


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

* Re: [PATCH] OMAP: Store switch state for OUTPUT gpio-switches
  2008-06-30 13:32 [PATCH] OMAP: Store switch state for OUTPUT gpio-switches Mikko Ylinen
@ 2008-07-03 10:20 ` Tony Lindgren
  0 siblings, 0 replies; 2+ messages in thread
From: Tony Lindgren @ 2008-07-03 10:20 UTC (permalink / raw)
  To: Mikko Ylinen; +Cc: linux-omap

* Mikko Ylinen <mikko.k.ylinen@nokia.com> [080630 16:35]:

Pushing today.

Tony

> Signed-off-by: Mikko Ylinen <mikko.k.ylinen@nokia.com>
> ---
>  arch/arm/plat-omap/gpio-switch.c |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/plat-omap/gpio-switch.c b/arch/arm/plat-omap/gpio-switch.c
> index cd96c00..7a61d0e 100644
> --- a/arch/arm/plat-omap/gpio-switch.c
> +++ b/arch/arm/plat-omap/gpio-switch.c
> @@ -131,11 +131,12 @@ static ssize_t gpio_sw_state_store(struct device *dev,
>  
>  	str = get_sw_str(sw);
>  	if (strcmp(state, str[0]) == 0)
> -		enable = 0;
> +		sw->state = enable = 0;
>  	else if (strcmp(state, str[1]) == 0)
> -		enable = 1;
> +		sw->state = enable = 1;
>  	else
>  		return -EINVAL;
> +
>  	if (sw->flags & OMAP_GPIO_SWITCH_FLAG_INVERTED)
>  		enable = !enable;
>  	omap_set_gpio_dataout(sw->gpio, enable);
> -- 
> 1.5.5.2
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2008-07-03 12:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-30 13:32 [PATCH] OMAP: Store switch state for OUTPUT gpio-switches Mikko Ylinen
2008-07-03 10:20 ` Tony Lindgren

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