mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-15 05:52:54 +02:00
a11dfce7a2
(This is mostly just drivers/ssb and include/linux/ssb) [brcm47xx] Regenerate patches against 2.6.25.1 kernel+files set Default is still to build against 2.6.23.16 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11155 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
337 B
C
12 lines
337 B
C
#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
|