1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 20:25:27 +03:00

ar71xx: add missing gpio_set_debounce function

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25848 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-03-03 10:33:35 +00:00
parent d99e3e6eb8
commit 097b43c34c

View File

@ -48,6 +48,11 @@ static inline void gpio_set_value(unsigned gpio, int value)
__gpio_set_value(gpio, value);
}
static inline int gpio_set_debounce(unsigned gpio, unsigned debounce)
{
return -ENOSYS;
}
#define gpio_cansleep __gpio_cansleep
#endif /* __ASM_MACH_AR71XX_GPIO_H */