fix switch-robo.c compile errors on linux 2.4
SVN-Revision: 10539
This commit is contained in:
parent
e8bbb631e3
commit
d65241e13b
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue