From d579f3e4fea8708e2a94ddecf85eb6f83629c8fb Mon Sep 17 00:00:00 2001 From: Maxim Sobolev Date: Sat, 18 Dec 2004 16:49:54 +0000 Subject: [PATCH] Add support for FC929X, which apparently is just a PCI-X version of FC929. MFC after: 3 days --- sys/dev/mpt/mpt_pci.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c index 874ee3eace2..f9054f084b1 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;