diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-03-09 21:57:11 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-03-09 21:57:11 +0000 |
commit | 04909ca614cb2b52dafe1f558743108d62a6db65 (patch) | |
tree | b143c90e6ff29d857d80e2f14b5217de81250cfe /package/switch/src/gpio.h | |
parent | ea601ebe33ab09c4e1c61adb4e6c46866edc749e (diff) | |
download | upstream-04909ca614cb2b52dafe1f558743108d62a6db65.tar.gz upstream-04909ca614cb2b52dafe1f558743108d62a6db65.tar.bz2 upstream-04909ca614cb2b52dafe1f558743108d62a6db65.zip |
allow kmod-switch to be used on brcm63xx (#4599)
SVN-Revision: 14825
Diffstat (limited to 'package/switch/src/gpio.h')
-rw-r--r-- | package/switch/src/gpio.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package/switch/src/gpio.h b/package/switch/src/gpio.h index f4fadfc640..e541cdac55 100644 --- a/package/switch/src/gpio.h +++ b/package/switch/src/gpio.h @@ -11,7 +11,15 @@ #ifdef BROADCOM #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 */ |