ramips: sanitize return value of ramips_gpio_get
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19401 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
9f3818d5e0
commit
7a147bbabd
|
@ -131,7 +131,7 @@ static int ramips_gpio_get(struct gpio_chip *chip, unsigned offset)
|
||||||
u32 t;
|
u32 t;
|
||||||
|
|
||||||
t = ramips_gpio_rr(rg, RAMIPS_GPIO_REG_DATA);
|
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 = {
|
static struct ramips_gpio_chip ramips_gpio_chip0 = {
|
||||||
|
|
Loading…
Reference in New Issue