thinkpad-acpi: name event constants
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / gpio.h
blobe10c49a5b96e9ed300d670871af2edbaaf23add1
1 #ifndef __LINUX_GPIO_H
2 #define __LINUX_GPIO_H
4 /* see Documentation/gpio.txt */
6 #ifdef CONFIG_GENERIC_GPIO
7 #include <asm/gpio.h>
9 #else
11 #include <linux/kernel.h>
12 #include <linux/types.h>
13 #include <linux/errno.h>
16 * Some platforms don't support the GPIO programming interface.
18 * In case some driver uses it anyway (it should normally have
19 * depended on GENERIC_GPIO), these routines help the compiler
20 * optimize out much GPIO-related code ... or trigger a runtime
21 * warning when something is wrongly called.
24 static inline int gpio_is_valid(int number)
26 return 0;
29 static inline int gpio_request(unsigned gpio, const char *label)
31 return -ENOSYS;
34 static inline void gpio_free(unsigned gpio)
36 might_sleep();
38 /* GPIO can never have been requested */
39 WARN_ON(1);
42 static inline int gpio_direction_input(unsigned gpio)
44 return -ENOSYS;
47 static inline int gpio_direction_output(unsigned gpio, int value)
49 return -ENOSYS;
52 static inline int gpio_get_value(unsigned gpio)
54 /* GPIO can never have been requested or set as {in,out}put */
55 WARN_ON(1);
56 return 0;
59 static inline void gpio_set_value(unsigned gpio, int value)
61 /* GPIO can never have been requested or set as output */
62 WARN_ON(1);
65 static inline int gpio_cansleep(unsigned gpio)
67 /* GPIO can never have been requested or set as {in,out}put */
68 WARN_ON(1);
69 return 0;
72 static inline int gpio_get_value_cansleep(unsigned gpio)
74 /* GPIO can never have been requested or set as {in,out}put */
75 WARN_ON(1);
76 return 0;
79 static inline void gpio_set_value_cansleep(unsigned gpio, int value)
81 /* GPIO can never have been requested or set as output */
82 WARN_ON(1);
85 static inline int gpio_export(unsigned gpio, bool direction_may_change)
87 /* GPIO can never have been requested or set as {in,out}put */
88 WARN_ON(1);
89 return -EINVAL;
92 static inline void gpio_unexport(unsigned gpio)
94 /* GPIO can never have been exported */
95 WARN_ON(1);
98 static inline int gpio_to_irq(unsigned gpio)
100 /* GPIO can never have been requested or set as input */
101 WARN_ON(1);
102 return -EINVAL;
105 static inline int irq_to_gpio(unsigned irq)
107 /* irq can never have been returned from gpio_to_irq() */
108 WARN_ON(1);
109 return -EINVAL;
112 #endif
114 #endif /* __LINUX_GPIO_H */