Blackfin arch: fix incorrect limit check for bf54x check_gpio
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
a10101d5ff
commit
72edff8dd4
|
@ -218,7 +218,7 @@ inline int check_gpio(unsigned gpio)
|
||||||
if (gpio == GPIO_PB15 || gpio == GPIO_PC14 || gpio == GPIO_PC15
|
if (gpio == GPIO_PB15 || gpio == GPIO_PC14 || gpio == GPIO_PC15
|
||||||
|| gpio == GPIO_PH14 || gpio == GPIO_PH15
|
|| gpio == GPIO_PH14 || gpio == GPIO_PH15
|
||||||
|| gpio == GPIO_PJ14 || gpio == GPIO_PJ15
|
|| gpio == GPIO_PJ14 || gpio == GPIO_PJ15
|
||||||
|| gpio > MAX_BLACKFIN_GPIOS)
|
|| gpio >= MAX_BLACKFIN_GPIOS)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue