summaryrefslogtreecommitdiffstats
path: root/include/gpio.h
blob: b7d840211ada76ae40868a4bf9e77713d3433025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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 */