gpio-lynxpoint: force gpio_get() to return "1" and "0" only
authorMathias Nyman <mathias.nyman@linux.intel.com>
Thu, 27 Mar 2014 13:02:08 +0000 (15:02 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 28 Mar 2014 20:52:35 +0000 (21:52 +0100)
Don't return the IN_LVL_BIT directly, a high gpio line returned
value "1073741824" intestead of "1" because IN_LVL_BIT is BIT(30)

Tested-by: Jerome Blin <jerome.blin@intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-lynxpoint.c

index 41f79cb24a9e3b037f235c43279a13a2ef01ad20..9a82a9074a2cfb3a74a1c56592eaf680dee1fbef 100644 (file)
@@ -188,7 +188,7 @@ static int lp_irq_type(struct irq_data *d, unsigned type)
 static int lp_gpio_get(struct gpio_chip *chip, unsigned offset)
 {
        unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
-       return inl(reg) & IN_LVL_BIT;
+       return !!(inl(reg) & IN_LVL_BIT);
 }
 
 static void lp_gpio_set(struct gpio_chip *chip, unsigned offset, int value)