we have a maximum of 32 gpios

SVN-Revision: 20265
lede-17.01
John Crispin 2010-03-18 10:56:28 +00:00
parent 10af553b63
commit b306cc489a
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value)
static inline int gpio_is_valid(int number)
{
return ((unsigned)number) < 16;
return ((unsigned)number) < 32;
}
#endif