|
|
@ -22,7 +22,8 @@ static inline int gpio_direction_input(unsigned gpio) |
|
|
|
|
|
|
|
|
|
|
|
static inline int gpio_direction_output(unsigned gpio, int value) |
|
|
|
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; |
|
|
|
return 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|