summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2004-12-18 16:49:54 +0000
committersobomax <sobomax@FreeBSD.org>2004-12-18 16:49:54 +0000
commitb131545097530b43cb33aecffeb0f13149cbbb85 (patch)
treec0b1d1af27424bb76b14e7000da76fa84a88da47
parent47c37eb87863e3e28ac45428b967c8c3152401ce (diff)
downloadFreeBSD-src-b131545097530b43cb33aecffeb0f13149cbbb85.zip
FreeBSD-src-b131545097530b43cb33aecffeb0f13149cbbb85.tar.gz
Add support for FC929X, which apparently is just a PCI-X version of FC929.
MFC after: 3 days
-rw-r--r--sys/dev/mpt/mpt_pci.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c
index 874ee3e..f9054f0 100644
--- a/sys/dev/mpt/mpt_pci.c
+++ b/sys/dev/mpt/mpt_pci.c
@@ -71,6 +71,10 @@ __FBSDID("$FreeBSD$");
#define PCI_PRODUCT_LSI_FC929 0x0622
#endif
+#ifndef PCI_PRODUCT_LSI_FC929X
+#define PCI_PRODUCT_LSI_FC929X 0x0626
+#endif
+
#ifndef PCI_PRODUCT_LSI_1030
#define PCI_PRODUCT_LSI_1030 0x0030
#endif
@@ -158,6 +162,9 @@ mpt_probe(device_t dev)
case PCI_PRODUCT_LSI_FC929:
desc = "LSILogic FC929 FC Adapter";
break;
+ case PCI_PRODUCT_LSI_FC929X:
+ desc = "LSILogic FC929X FC Adapter";
+ break;
case PCI_PRODUCT_LSI_1030:
desc = "LSILogic 1030 Ultra4 Adapter";
break;
OpenPOWER on IntegriCloud