Commit eb9ae7f2 authored by Hamo's avatar Hamo Committed by Grant Likely

gpio: fix build error in include/asm-generic/gpio.h

Should call the platform-specific __gpio_{get,set}_value
instead of generic gpio_{get,set}_value
Signed-off-by: default avatarYang Bai <hamo.by@gmail.com>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent feb83699
...@@ -209,13 +209,13 @@ static inline int gpio_cansleep(unsigned gpio) ...@@ -209,13 +209,13 @@ static inline int gpio_cansleep(unsigned gpio)
static inline int gpio_get_value_cansleep(unsigned gpio) static inline int gpio_get_value_cansleep(unsigned gpio)
{ {
might_sleep(); might_sleep();
return gpio_get_value(gpio); return __gpio_get_value(gpio);
} }
static inline void gpio_set_value_cansleep(unsigned gpio, int value) static inline void gpio_set_value_cansleep(unsigned gpio, int value)
{ {
might_sleep(); might_sleep();
gpio_set_value(gpio, value); __gpio_set_value(gpio, value);
} }
#endif /* !CONFIG_GPIOLIB */ #endif /* !CONFIG_GPIOLIB */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment