summaryrefslogtreecommitdiffstats
path: root/include/asm-generic/gpio.h
blob: 1997888bbb1964dcd8a97aeda8fb30d3e8022511 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __ASM_GENERIC_GPIO_H
#define __ASM_GENERIC_GPIO_H

void gpio_set_value(unsigned gpio, int value);
int gpio_get_value(unsigned gpio);
int gpio_direction_output(unsigned gpio, int value);
int gpio_direction_input(unsigned gpio);

#endif /* __ASM_GENERIC_GPIO_H */