diff options
author | Axel Lin <axel.lin@ingics.com> | 2016-02-15 15:10:40 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-02-16 17:58:32 +0300 |
commit | 818cc6a5f8c6030d05f7dcb21970bf5f7db5dcbd (patch) | |
tree | 6748894a33af980058827ffdb032fb6938ddb27f /drivers | |
parent | ce02d18fc1292eded6b935e73e897d39ae8e3ff4 (diff) | |
download | linux-818cc6a5f8c6030d05f7dcb21970bf5f7db5dcbd.tar.xz |
gpio: tps65218: Make tps65218_gpio_output set proper output level
The .direction_output callback should set proper output level.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpio/gpio-tps65218.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-tps65218.c b/drivers/gpio/gpio-tps65218.c index 9eb1a5ab2d95..2fc7e16aee0c 100644 --- a/drivers/gpio/gpio-tps65218.c +++ b/drivers/gpio/gpio-tps65218.c @@ -59,6 +59,7 @@ static int tps65218_gpio_output(struct gpio_chip *gc, unsigned offset, int value) { /* Only drives GPOs */ + tps65218_gpio_set(gc, offset, value); return 0; } |