X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/c7a59f885d9372e0a8695f6906587a2fa0931e20..a6ff6c1f36b886b61a08ac89996ee15340e6fc64:/package/switch/src/gpio.h diff --git a/package/switch/src/gpio.h b/package/switch/src/gpio.h index f4fadfc64..90bafd39e 100644 --- a/package/switch/src/gpio.h +++ b/package/switch/src/gpio.h @@ -8,10 +8,18 @@ #ifndef __GPIO_H #define __GPIO_H -#ifdef BROADCOM +#ifdef CONFIG_BCM47XX #include "gpio-bcm947xx.h" #else -#error "Unsupported configuration." +#warning "Unsupported configuration." + +#define gpio_in() (-1U) +#define gpio_out(mask, value) (-1U) +#define gpio_outen(mask, value) (-1U) +#define gpio_control(mask, value) (-1U) +#define gpio_intmask(mask, value) (-1U) +#define gpio_intpolarity(mask, value) (-1U) + #endif #endif /* __GPIO_H */