1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 22:43:53 +01:00

bcm47xx: Fix GPIO data direction output bit assignment

SVN-Revision: 10605
This commit is contained in:
Michael Büsch 2008-03-15 20:52:02 +00:00
parent c8ffd446c9
commit d3cf33a4ae

@ -22,7 +22,8 @@ static inline int gpio_direction_input(unsigned gpio)
static inline int gpio_direction_output(unsigned gpio, int value)
{
ssb_gpio_outen(&ssb, 1 << gpio, value << gpio);
ssb_gpio_out(&ssb, 1 << gpio, (value ? 1 << gpio : 0));
ssb_gpio_outen(&ssb, 1 << gpio, 1 << gpio);
return 0;
}