diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-03-10 18:08:33 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-03-10 18:08:33 +0000 |
commit | 520d9c36af2f9e4f207dd7275a47ea97c668f749 (patch) | |
tree | fc665c3d4c250d3c9411219f580f5affbbf03873 /src/drivers/net/3c509.c | |
parent | f079865606ba846d53b99e60a63d1ebeb22ea08a (diff) | |
download | ipxe-520d9c36af2f9e4f207dd7275a47ea97c668f749.tar.gz |
Updated ISAPnP, EISA, MCA and ISA buses to current device model.
ISA 3c509 is currently non-functional, although the EISA (3c509-eisa) and
MCA (3c529) variants should build OK.
None of this code is yet tested.
Diffstat (limited to 'src/drivers/net/3c509.c')
-rw-r--r-- | src/drivers/net/3c509.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/drivers/net/3c509.c b/src/drivers/net/3c509.c index 297017130..1ae6a06bc 100644 --- a/src/drivers/net/3c509.c +++ b/src/drivers/net/3c509.c @@ -4,7 +4,9 @@ * */ -#include "isa.h" +#if 0 + +#include <gpxe/isa.h> #include "io.h" #include "timer.h" #include "string.h" @@ -399,3 +401,5 @@ DRIVER ( "3c509", nic_driver, t509_driver, el3_t509_driver, el3_t509_probe, el3_t509_disable ); ISA_ROM ( "3c509", "3c509" ); + +#endif |