Here is the changes necessary for tulip.c ver 0.91g to work with newer Kernels.
 
If you get the error: dereferencing pointer to incomplete type
AND
in line 606: structure has no member named `base_address'
 
then patch -p0 tulip.c < this_textfile
 
--- CUT HERE ---
 
diff 5/tulip.c 4/tulip.c
19a20,21
> #define device net_device
>
606c608
<    ioaddr = pdev->base_address[0] & ~3;
---
>    ioaddr = pdev->resource[0].start /* & ~3*/;
--- CUT HERE ---
 

Reply via email to