summaryrefslogtreecommitdiffstats
path: root/include/asm-avr32/arch-at32ap/gpio.h
diff options
context:
space:
mode:
authorHaavard Skinnemoen <haavard.skinnemoen@atmel.com>2008-08-05 14:50:11 +0200
committerHaavard Skinnemoen <haavard.skinnemoen@atmel.com>2008-08-08 12:31:55 +0200
commita7448db4826efb097e94f601f4cd9b37053e81bf (patch)
tree6e65bfe7369dffae2f5bcd06f12381cd02da0541 /include/asm-avr32/arch-at32ap/gpio.h
parenta09e64fbc0094e3073dbb09c3b4bfe4ab669244b (diff)
downloadkernel-crypto-a7448db4826efb097e94f601f4cd9b37053e81bf.tar.gz
kernel-crypto-a7448db4826efb097e94f601f4cd9b37053e81bf.tar.xz
kernel-crypto-a7448db4826efb097e94f601f4cd9b37053e81bf.zip
avr32: Remove include/asm-avr32/arch-at32ap
Since all users have been converted over to use <mach/foo.h>, there's no need for the arch-at32ap directory and associated symlink anymore. Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'include/asm-avr32/arch-at32ap/gpio.h')
-rw-r--r--include/asm-avr32/arch-at32ap/gpio.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/include/asm-avr32/arch-at32ap/gpio.h b/include/asm-avr32/arch-at32ap/gpio.h
deleted file mode 100644
index 0180f584ef0..00000000000
--- a/include/asm-avr32/arch-at32ap/gpio.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef __ASM_AVR32_ARCH_GPIO_H
-#define __ASM_AVR32_ARCH_GPIO_H
-
-#include <linux/compiler.h>
-#include <asm/irq.h>
-
-
-/* Some GPIO chips can manage IRQs; some can't. The exact numbers can
- * be changed if needed, but for the moment they're not configurable.
- */
-#define ARCH_NR_GPIOS (NR_GPIO_IRQS + 2 * 32)
-
-
-/* Arch-neutral GPIO API, supporting both "native" and external GPIOs. */
-#include <asm-generic/gpio.h>
-
-static inline int gpio_get_value(unsigned int gpio)
-{
- return __gpio_get_value(gpio);
-}
-
-static inline void gpio_set_value(unsigned int gpio, int value)
-{
- __gpio_set_value(gpio, value);
-}
-
-static inline int gpio_cansleep(unsigned int gpio)
-{
- return __gpio_cansleep(gpio);
-}
-
-
-static inline int gpio_to_irq(unsigned int gpio)
-{
- if (gpio < NR_GPIO_IRQS)
- return gpio + GPIO_IRQ_BASE;
- return -EINVAL;
-}
-
-static inline int irq_to_gpio(unsigned int irq)
-{
- return irq - GPIO_IRQ_BASE;
-}
-
-#endif /* __ASM_AVR32_ARCH_GPIO_H */