diff options
| author | Alexander Shiyan <shc_work@mail.ru> | 2012-10-24 10:58:57 +0400 | 
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2012-10-24 10:03:20 +0200 | 
| commit | 41b3996e3b6825bd3a0624d62fde53fbad092ed0 (patch) | |
| tree | e400c7d8dfcbc29c353e6f8dae16942a98655b20 | |
| parent | fc4e2514995d9cd7f3e1a67098ce65d72acf8ec7 (diff) | |
| download | olio-linux-3.10-41b3996e3b6825bd3a0624d62fde53fbad092ed0.tar.xz olio-linux-3.10-41b3996e3b6825bd3a0624d62fde53fbad092ed0.zip  | |
GPIO: clps711x: Fix return value for gpio_clps711x_get
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/gpio/gpio-clps711x.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-clps711x.c b/drivers/gpio/gpio-clps711x.c index ea21822b3de..0753b3a9a34 100644 --- a/drivers/gpio/gpio-clps711x.c +++ b/drivers/gpio/gpio-clps711x.c @@ -47,7 +47,7 @@ static void __iomem *clps711x_pdirs[] = {  static int gpio_clps711x_get(struct gpio_chip *chip, unsigned offset)  { -	return !!readb(clps711x_port(chip)) & (1 << offset); +	return !!(readb(clps711x_port(chip)) & (1 << offset));  }  static void gpio_clps711x_set(struct gpio_chip *chip, unsigned offset,  |