From c5d0726ad0914c948fcddda39adc02ed48f42427 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 13 Apr 2004 19:34:20 +0000 Subject: [PATCH] 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 032de5260d6..3016b6e0201 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: -- 2.45.2