aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-exar.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2017-02-26 22:36:58 +0800
committerLinus Walleij <linus.walleij@linaro.org>2017-03-15 11:16:31 +0100
commiteddeae073760aa3186e2fa0d14a12794687fa786 (patch)
tree61767ef408c6ec4e3850a354d818a33924471892 /drivers/gpio/gpio-exar.c
parentgpio: return NULL from gpiod_get_optional when GPIOLIB is disabled (diff)
downloadlinux-dev-eddeae073760aa3186e2fa0d14a12794687fa786.tar.xz
linux-dev-eddeae073760aa3186e2fa0d14a12794687fa786.zip
gpio: exar: Set proper output level in exar_direction_output
Current code does not set output level in exar_direction_output, fix it. Also move the direction_output/direction_input code block to avoid forward declaration for exar_set_value(). Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-exar.c')
-rw-r--r--drivers/gpio/gpio-exar.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/drivers/gpio/gpio-exar.c b/drivers/gpio/gpio-exar.c
index 05c8946d6446..081076771217 100644
--- a/drivers/gpio/gpio-exar.c
+++ b/drivers/gpio/gpio-exar.c
@@ -59,17 +59,6 @@ static int exar_set_direction(struct gpio_chip *chip, int direction,
return 0;
}
-static int exar_direction_output(struct gpio_chip *chip, unsigned int offset,
- int value)
-{
- return exar_set_direction(chip, 0, offset);
-}
-
-static int exar_direction_input(struct gpio_chip *chip, unsigned int offset)
-{
- return exar_set_direction(chip, 1, offset);
-}
-
static int exar_get(struct gpio_chip *chip, unsigned int reg)
{
struct exar_gpio_chip *exar_gpio = gpiochip_get_data(chip);
@@ -116,6 +105,18 @@ static void exar_set_value(struct gpio_chip *chip, unsigned int offset,
exar_update(chip, addr, value, offset % 8);
}
+static int exar_direction_output(struct gpio_chip *chip, unsigned int offset,
+ int value)
+{
+ exar_set_value(chip, offset, value);
+ return exar_set_direction(chip, 0, offset);
+}
+
+static int exar_direction_input(struct gpio_chip *chip, unsigned int offset)
+{
+ return exar_set_direction(chip, 1, offset);
+}
+
static int gpio_exar_probe(struct platform_device *pdev)
{
struct pci_dev *pcidev = platform_get_drvdata(pdev);