Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139184
b: refs/heads/master
c: e0f7ad5
h: refs/heads/master
v: v3
  • Loading branch information
Michael Buesch authored and Linus Torvalds committed Apr 1, 2009
1 parent 261ea5d commit 78b3cec
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 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: c0aa24ba8962bd1db98938fb2f3773f870896036
refs/heads/master: e0f7ad5f4f5056b20914a35d31abcf29036ca364
20 changes: 12 additions & 8 deletions trunk/arch/mips/include/asm/mach-bcm47xx/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,24 +31,28 @@ static inline void gpio_set_value(unsigned gpio, int value)

static inline int gpio_direction_input(unsigned gpio)
{
return ssb_gpio_outen(&ssb_bcm47xx, 1 << gpio, 0);
ssb_gpio_outen(&ssb_bcm47xx, 1 << gpio, 0);
return 0;
}

static inline int gpio_direction_output(unsigned gpio, int value)
{
return ssb_gpio_outen(&ssb_bcm47xx, 1 << gpio, 1 << gpio);
ssb_gpio_outen(&ssb_bcm47xx, 1 << gpio, 1 << gpio);
return 0;
}

static int gpio_intmask(unsigned gpio, int value)
static inline int gpio_intmask(unsigned gpio, int value)
{
return ssb_gpio_intmask(&ssb_bcm47xx, 1 << gpio,
value ? 1 << gpio : 0);
ssb_gpio_intmask(&ssb_bcm47xx, 1 << gpio,
value ? 1 << gpio : 0);
return 0;
}

static int gpio_polarity(unsigned gpio, int value)
static inline int gpio_polarity(unsigned gpio, int value)
{
return ssb_gpio_polarity(&ssb_bcm47xx, 1 << gpio,
value ? 1 << gpio : 0);
ssb_gpio_polarity(&ssb_bcm47xx, 1 << gpio,
value ? 1 << gpio : 0);
return 0;
}


Expand Down

0 comments on commit 78b3cec

Please sign in to comment.