summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_sf.c
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>1999-11-20 18:29:44 +0000
committerwpaul <wpaul@FreeBSD.org>1999-11-20 18:29:44 +0000
commit5ade237428fc4321958da968ae369ca0efbb43a0 (patch)
treed9163b97f24bbc2b61cafd2a1de9965eb0c4cfd2 /sys/pci/if_sf.c
parentb5a0bd94943cb40715dd37850d2199cac15a880f (diff)
downloadFreeBSD-src-5ade237428fc4321958da968ae369ca0efbb43a0.zip
FreeBSD-src-5ade237428fc4321958da968ae369ca0efbb43a0.tar.gz
Minor tweak: the subsystem device ID code for the quad port 62044 card
is documented to be 0x18 in the Adaptec manual, however there appears to be a newer board rev with code 0x19. I added a #define for this and updated the probe code so that this board will be properly identified in the probe messages. (Currently it's just identified generically as an AIC-6915 chip.)
Diffstat (limited to 'sys/pci/if_sf.c')
-rw-r--r--sys/pci/if_sf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c
index bc54fed..d0fb709 100644
--- a/sys/pci/if_sf.c
+++ b/sys/pci/if_sf.c
@@ -614,7 +614,8 @@ static int sf_probe(dev)
"Adaptec ANA-62022 10/100BaseTX");
return(0);
break;
- case AD_SUBSYSID_62044:
+ case AD_SUBSYSID_62044_REV0:
+ case AD_SUBSYSID_62044_REV1:
device_set_desc(dev,
"Adaptec ANA-62044 10/100BaseTX");
return(0);
OpenPOWER on IntegriCloud