From ebf417cf92eb8de186c53ee44a4b82c4c8958dc5 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 17 Oct 2005 02:32:23 +0000 Subject: [PATCH] Check against 8019 rather than 8029 for reading in the MAC addr since the former is the ISA part, not the latter. MFC After 6.0 is unfrozen (this bug doesn't exist in 6.0 because I didn't MFC the rtl80x9 changes for ISA due to an error on my part) --- sys/dev/ed/if_ed_isa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/ed/if_ed_isa.c b/sys/dev/ed/if_ed_isa.c index ec970e1bfb9..ebe2b6bf57f 100644 --- a/sys/dev/ed/if_ed_isa.c +++ b/sys/dev/ed/if_ed_isa.c @@ -171,7 +171,7 @@ ed_isa_attach(device_t dev) return (error); } - if (sc->chip_type == ED_CHIP_TYPE_RTL8029) + if (sc->chip_type == ED_CHIP_TYPE_RTL8019) ed_Novell_read_mac(sc); #ifdef ED_HPP