Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271164
b: refs/heads/master
c: eb9ae7f
h: refs/heads/master
v: v3
  • Loading branch information
Hamo authored and Grant Likely committed Oct 26, 2011
1 parent 5088fc1 commit 9ac3bd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: feb836992437c9b8b53988da30880e0e6e93ac8b
refs/heads/master: eb9ae7f2a38135761496d317c08c87f38c7cafe3
4 changes: 2 additions & 2 deletions trunk/include/asm-generic/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 9ac3bd5

Please sign in to comment.