projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9e8dba
)
gpio: moxart: Actually set output state in moxart_gpio_direction_output()
author
Axel Lin
<axel.lin@ingics.com>
Tue, 25 Mar 2014 02:44:19 +0000
(10:44 +0800)
committer
Linus Walleij
<linus.walleij@linaro.org>
Thu, 27 Mar 2014 09:19:08 +0000
(10:19 +0100)
moxart_gpio_direction_output() ignored the state passed into it. Fix it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-moxart.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpio/gpio-moxart.c
b/drivers/gpio/gpio-moxart.c
index a19a14d590f99a3e0e389d307497131a3a0a6517..ccd45704e5fdc1f5c4a089e9dd6f994c8eb10a67 100644
(file)
--- a/
drivers/gpio/gpio-moxart.c
+++ b/
drivers/gpio/gpio-moxart.c
@@
-88,6
+88,7
@@
static int moxart_gpio_direction_output(struct gpio_chip *chip,
struct moxart_gpio_chip *gc = to_moxart_gpio(chip);
void __iomem *ioaddr = gc->base + GPIO_PIN_DIRECTION;
+ moxart_gpio_set(chip, offset, value);
writel(readl(ioaddr) | BIT(offset), ioaddr);
return 0;
}