summaryrefslogtreecommitdiffstats
path: root/src/drivers/net/cs89x0.c
diff options
context:
space:
mode:
authorMichael Brown2005-04-26 14:19:39 +0200
committerMichael Brown2005-04-26 14:19:39 +0200
commit7e534b585fca690c57dcd4de6c5b63f61a6f7b3f (patch)
tree55856d1e4f4de4a0b9ecb0c894cd6f0f6604057f /src/drivers/net/cs89x0.c
parentBIOS floppy handling code moved to where it will really live. (diff)
downloadipxe-7e534b585fca690c57dcd4de6c5b63f61a6f7b3f.tar.gz
ipxe-7e534b585fca690c57dcd4de6c5b63f61a6f7b3f.tar.xz
ipxe-7e534b585fca690c57dcd4de6c5b63f61a6f7b3f.zip
Automatically updated with
perl -pi -0777 -e 's/^static struct \w+_driver (\w+) =\s*(\w+_DRIVER \()/${2} ${1},/msg' *.c
Diffstat (limited to 'src/drivers/net/cs89x0.c')
-rw-r--r--src/drivers/net/cs89x0.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/drivers/net/cs89x0.c b/src/drivers/net/cs89x0.c
index 9fc1ef76..35a9f81c 100644
--- a/src/drivers/net/cs89x0.c
+++ b/src/drivers/net/cs89x0.c
@@ -696,9 +696,8 @@ static isa_probe_addr_t cs89x0_probe_addrs[] = {
#endif
};
-static struct isa_driver cs89x0_driver =
- ISA_DRIVER ( cs89x0_probe_addrs, cs89x0_probe_addr,
- ISAPNP_VENDOR('C','S','C'), 0x0007 );
+ISA_DRIVER ( cs89x0_driver, cs89x0_probe_addrs, cs89x0_probe_addr,
+ ISAPNP_VENDOR('C','S','C'), 0x0007 );
DRIVER ( "cs89x0", nic_driver, isa_driver, cs89x0_driver,
cs89x0_probe, cs89x0_disable );