9
0
Fork 0
barebox/include/gpio.h

15 lines
209 B
C

#ifndef __GPIO_H
#define __GPIO_H
#include <asm/gpio.h>
static inline int gpio_request(unsigned gpio, const char *label)
{
return 0;
}
static inline void gpio_free(unsigned gpio)
{
}
#endif /* __GPIO_H */