add missing header file
SVN-Revision: 10265
This commit is contained in:
parent
f6c094ac8a
commit
5411061a03
1 changed files with 11 additions and 0 deletions
11
target/linux/generic-2.6/files/include/linux/gpio_dev.h
Normal file
11
target/linux/generic-2.6/files/include/linux/gpio_dev.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#ifndef _GPIODEV_H__
|
||||
#define _GPIODEV_H__
|
||||
|
||||
#define IOC_GPIODEV_MAGIC 'B'
|
||||
#define GPIO_GET _IO(IOC_GPIODEV_MAGIC, 10)
|
||||
#define GPIO_SET _IO(IOC_GPIODEV_MAGIC, 11)
|
||||
#define GPIO_CLEAR _IO(IOC_GPIODEV_MAGIC, 12)
|
||||
#define GPIO_DIR_IN _IO(IOC_GPIODEV_MAGIC, 13)
|
||||
#define GPIO_DIR_OUT _IO(IOC_GPIODEV_MAGIC, 14)
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue