projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
265fe02
)
gpio: tps65910: Use correct offset for gpio initialization
author
Laxman Dewangan
<ldewangan@nvidia.com>
Wed, 18 Jan 2012 14:37:35 +0000
(20:07 +0530)
committer
Grant Likely
<grant.likely@secretlab.ca>
Wed, 18 Jan 2012 20:48:43 +0000
(13:48 -0700)
Using the correct gpio offset for setting the initial value
of gpio when setting output direction.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/gpio/gpio-tps65910.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-tps65910.c
b/drivers/gpio/gpio-tps65910.c
index b9c1c297669e64a167a9257021a82d54e1f854c5..91f45b965d1e812d542e81d2c81ab6e60ae52843 100644
(file)
--- a/
drivers/gpio/gpio-tps65910.c
+++ b/
drivers/gpio/gpio-tps65910.c
@@
-52,7
+52,7
@@
static int tps65910_gpio_output(struct gpio_chip *gc, unsigned offset,
struct tps65910 *tps65910 = container_of(gc, struct tps65910, gpio);
/* Set the initial value */
- tps65910_gpio_set(gc,
0
, value);
+ tps65910_gpio_set(gc,
offset
, value);
return tps65910_set_bits(tps65910, TPS65910_GPIO0 + offset,
GPIO_CFG_MASK);