diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2007-11-26 12:50:42 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-26 09:37:31 -0500 |
commit | 6331acd78f7916db16ec20b50d7838bd4944cd27 (patch) | |
tree | ad803b2054ad21333cb013763c9bc6e022b88adc /include/asm-arm/arch-ep93xx | |
parent | 3c9a071d77e007464952a2d41b6686d98eb3f0b8 (diff) |
[ARM] 4671/1: ep93xx: remove obsolete gpio_line_* operations
With the new GPIO methods in place the old gpio_line_* methods are redundant,
so this patch finally removes the old legacy gpio_line_* wrappers.
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Acked-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-ep93xx')
-rw-r--r-- | include/asm-arm/arch-ep93xx/gpio.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/include/asm-arm/arch-ep93xx/gpio.h b/include/asm-arm/arch-ep93xx/gpio.h index cebb64be7e4b..9b1864bbd9a8 100644 --- a/include/asm-arm/arch-ep93xx/gpio.h +++ b/include/asm-arm/arch-ep93xx/gpio.h | |||
@@ -138,23 +138,4 @@ static inline int irq_to_gpio(unsigned irq) | |||
138 | return irq - gpio_to_irq(0); | 138 | return irq - gpio_to_irq(0); |
139 | } | 139 | } |
140 | 140 | ||
141 | /* obsolete specific GPIO API */ | ||
142 | #define GPIO_IN 0 | ||
143 | #define GPIO_OUT 1 | ||
144 | |||
145 | #define EP93XX_GPIO_LOW 0 | ||
146 | #define EP93XX_GPIO_HIGH 1 | ||
147 | |||
148 | void __deprecated gpio_line_config(int line, int direction); | ||
149 | |||
150 | static inline int __deprecated gpio_line_get(int line) | ||
151 | { | ||
152 | return gpio_get_value(line); | ||
153 | } | ||
154 | |||
155 | static inline void __deprecated gpio_line_set(int line, int value) | ||
156 | { | ||
157 | gpio_set_value(line, value); | ||
158 | } | ||
159 | |||
160 | #endif | 141 | #endif |