[PATCH V2] GPIO: gpio-pxa: fix bug when get gpio value

From: Neil Zhang
Date: Tue Sep 25 2012 - 21:48:49 EST


We need to return 0 or 1 when get gpio value.

Signed-off-by: Neil Zhang <zhangwm@xxxxxxxxxxx>
---
drivers/gpio/gpio-pxa.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c
index 9cac88a..3c9dc8c 100644
--- a/drivers/gpio/gpio-pxa.c
+++ b/drivers/gpio/gpio-pxa.c
@@ -269,7 +269,9 @@ static int pxa_gpio_direction_output(struct gpio_chip *chip,

static int pxa_gpio_get(struct gpio_chip *chip, unsigned offset)
{
- return readl_relaxed(gpio_chip_base(chip) + GPLR_OFFSET) & (1 << offset);
+ u32 gplr = readl_relaxed(gpio_chip_base(chip) + GPLR_OFFSET);
+
+ return (gplr & (1 << offset)) ? 1 : 0;
}

static void pxa_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
--
1.7.4.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/