fix missing symbols for kernel 2.6.33, closes #6803 thanks Maddes
[openwrt.git] / target / linux / ramips / files / arch / mips / ralink / common / gpio.c
index 3a1b038..892f15b 100644 (file)
@@ -131,7 +131,7 @@ static int ramips_gpio_get(struct gpio_chip *chip, unsigned offset)
        u32 t;
 
        t = ramips_gpio_rr(rg, RAMIPS_GPIO_REG_DATA);
-       return (t & (1 << offset));
+       return !!(t & (1 << offset));
 }
 
 static struct ramips_gpio_chip ramips_gpio_chip0 = {
This page took 0.02341 seconds and 4 git commands to generate.