Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 336829
b: refs/heads/master
c: 195812e
h: refs/heads/master
i:
  336827: 4b05dd8
v: v3
  • Loading branch information
Laxman Dewangan authored and Linus Walleij committed Nov 17, 2012
1 parent b9caefd commit 4c5276b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ed32620ea72889c8a9dda278a960bce01136d9a4
refs/heads/master: 195812e4b6a631e8eaad4046bf6890db4328ea1f
5 changes: 5 additions & 0 deletions trunk/drivers/gpio/gpio-tegra.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,11 @@ static void tegra_gpio_set(struct gpio_chip *chip, unsigned offset, int value)

static int tegra_gpio_get(struct gpio_chip *chip, unsigned offset)
{
/* If gpio is in output mode then read from the out value */
if ((tegra_gpio_readl(GPIO_OE(offset)) >> GPIO_BIT(offset)) & 1)
return (tegra_gpio_readl(GPIO_OUT(offset)) >>
GPIO_BIT(offset)) & 0x1;

return (tegra_gpio_readl(GPIO_IN(offset)) >> GPIO_BIT(offset)) & 0x1;
}

Expand Down

0 comments on commit 4c5276b

Please sign in to comment.