summaryrefslogtreecommitdiffstats
path: root/target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-02-13 14:35:18 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-02-13 14:35:18 +0000
commitc592ef61b366aa791913ce6956b362afba08e7fe (patch)
tree8901b1890a030c3049929e5860c413a43e505d1c /target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h
parent80f0eec0aad257b5d020eaf8abc35d437dadfe73 (diff)
downloadmaster-31e0f0ae-c592ef61b366aa791913ce6956b362afba08e7fe.tar.gz
master-31e0f0ae-c592ef61b366aa791913ce6956b362afba08e7fe.tar.bz2
master-31e0f0ae-c592ef61b366aa791913ce6956b362afba08e7fe.zip
Upgrade rdc to 2.6.24
SVN-Revision: 10453
Diffstat (limited to 'target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h')
-rw-r--r--target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h b/target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h
new file mode 100644
index 0000000000..5305dcb96d
--- /dev/null
+++ b/target/linux/rdc/files/include/asm-x86/mach-generic/gpio.h
@@ -0,0 +1,15 @@
+#ifndef __ASM_MACH_GENERIC_GPIO_H
+#define __ASM_MACH_GENERIC_GPIO_H
+
+int gpio_request(unsigned gpio, const char *label);
+void gpio_free(unsigned gpio);
+int gpio_direction_input(unsigned gpio);
+int gpio_direction_output(unsigned gpio, int value);
+int gpio_get_value(unsigned gpio);
+void gpio_set_value(unsigned gpio, int value);
+int gpio_to_irq(unsigned gpio);
+int irq_to_gpio(unsigned irq);
+
+#include <asm-generic/gpio.h> /* cansleep wrappers */
+
+#endif /* __ASM_MACH_GENERIC_GPIO_H */