lantiq: Tune the XWAY subtarget cflags
[openwrt.git] / package / switch / src / gpio.h
index f4fadfc..cb734f7 100644 (file)
@@ -8,10 +8,18 @@
 #ifndef __GPIO_H
 #define __GPIO_H
 
-#ifdef BROADCOM
-#include "gpio-bcm947xx.h"
+#ifdef CONFIG_BCM47XX
+#include <linux/gpio.h>
 #else
-#error "Unsupported configuration."
+#warning "Unsupported configuration."
+
+#define bcm47xx_gpio_in(mask)                  (-1U)
+#define bcm47xx_gpio_out(mask, value)          (-1U)
+#define bcm47xx_gpio_outen(mask, value)                (-1U)
+#define bcm47xx_gpio_control(mask, value)      (-1U)
+#define bcm47xx_gpio_intmask(mask, value)      (-1U)
+#define bcm47xx_gpio_polarity(mask, value)     (-1U)
+
 #endif
 
 #endif /* __GPIO_H */