From 9ac3bd5b9101f59e9536ef380c5c3809ddd09ab1 Mon Sep 17 00:00:00 2001 From: Hamo Date: Fri, 21 Oct 2011 09:38:32 +0800 Subject: [PATCH] --- yaml --- r: 271164 b: refs/heads/master c: eb9ae7f2a38135761496d317c08c87f38c7cafe3 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/asm-generic/gpio.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 7f3eb67e0b1f..18296be166f9 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: feb836992437c9b8b53988da30880e0e6e93ac8b +refs/heads/master: eb9ae7f2a38135761496d317c08c87f38c7cafe3 diff --git a/trunk/include/asm-generic/gpio.h b/trunk/include/asm-generic/gpio.h index dbb2832b76fd..8c8621097fa0 100644 --- a/trunk/include/asm-generic/gpio.h +++ b/trunk/include/asm-generic/gpio.h @@ -209,13 +209,13 @@ static inline int gpio_cansleep(unsigned gpio) static inline int gpio_get_value_cansleep(unsigned gpio) { might_sleep(); - return gpio_get_value(gpio); + return __gpio_get_value(gpio); } static inline void gpio_set_value_cansleep(unsigned gpio, int value) { might_sleep(); - gpio_set_value(gpio, value); + __gpio_set_value(gpio, value); } #endif /* !CONFIG_GPIOLIB */