[brcm63xx] add experimental support for 2.6.28.10, tested on bcm6338
[openwrt.git] / target / linux / brcm63xx / files / include / asm-mips / mach-bcm63xx / gpio.h
index dd2c0f3..7cda8c0 100644 (file)
@@ -3,50 +3,13 @@
 
 #include <bcm63xx_gpio.h>
 
-static inline int gpio_is_valid(int number)
-{
-       return (number >= BCM63XX_GPIO_COUNT) ? 0 : 1;
-}
+#define gpio_to_irq(gpio)      NULL
 
-static inline int gpio_request(unsigned gpio, const char *label)
-{
-       return 0;
-}
+#define gpio_get_value __gpio_get_value
+#define gpio_set_value __gpio_set_value
 
-static inline void gpio_free(unsigned gpio)
-{
-}
+#define gpio_cansleep __gpio_cansleep
 
-static inline int gpio_direction_input(unsigned gpio)
-{
-       bcm63xx_gpio_set_direction(gpio, GPIO_DIR_IN);
-       return 0;
-}
-
-static inline int gpio_direction_output(unsigned gpio, int value)
-{
-       bcm63xx_gpio_set_direction(gpio, GPIO_DIR_OUT);
-       return 0;
-}
-
-static inline int gpio_get_value(unsigned gpio)
-{
-       return bcm63xx_gpio_get_datain(gpio);
-}
-
-static inline void gpio_set_value(unsigned gpio, int value)
-{
-       bcm63xx_gpio_set_dataout(gpio, value);
-}
-
-static inline int gpio_to_irq(unsigned gpio)
-{
-       return gpio;
-}
-
-static inline int irq_to_gpio(unsigned irq)
-{
-       return irq;
-}
+#include <asm-generic/gpio.h>
 
 #endif /* __ASM_MIPS_MACH_BCM63XX_GPIO_H */
This page took 0.020967 seconds and 4 git commands to generate.