From d5f2a0a5ed70609f0a843ea61a7a6f3e0ce157c1 Mon Sep 17 00:00:00 2001 From: imp Date: Tue, 13 Apr 2004 19:34:20 +0000 Subject: Boomerang 10/100BT (found in 2c905-TX) chips apparently suffer the same problems as their Hurricane 575* bretheren in that one could set the memory mapped port, but that has no effect. Add a quirk for this. # I'll have to see if I can dig up documentation on these parts to see # if there's someway software can know this other than a table... --- sys/pci/if_xl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index 032de52..3016b6e 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -1373,6 +1373,7 @@ xl_attach(dev) sc->xl_flags |= XL_FLAG_PHYOK; switch (did) { + case TC_DEVICEID_BOOMERANG_10_100BT: /* 3c905-TX */ case TC_DEVICEID_HURRICANE_575A: case TC_DEVICEID_HURRICANE_575B: case TC_DEVICEID_HURRICANE_575C: -- cgit v1.1