diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-01 15:34:17 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-01 15:34:17 +0000 |
commit | b3f2bc9aaca1ccd16cfbf5ca78e137c419931a7b (patch) | |
tree | ca2ac3d3924243cfe0add14fdb1b9abb0f25e823 | |
parent | 5520f49b605a23602be954548481961482d03935 (diff) |
fix switch-robo.c compile errors on linux 2.4
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10539 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/switch/src/switch-robo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/switch/src/switch-robo.c b/package/switch/src/switch-robo.c index 5bcd85bd1..28d8de326 100644 --- a/package/switch/src/switch-robo.c +++ b/package/switch/src/switch-robo.c @@ -62,6 +62,10 @@ #define SIOCGETCPHYRD (SIOCDEVPRIVATE + 9) #define SIOCSETCPHYWR (SIOCDEVPRIVATE + 10) +/* linux 2.4 does not have 'bool' */ +#if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) +#define bool int +#endif /* Data structure for a Roboswitch device. */ struct robo_switch { |