mirror of
https://github.com/opnsense/src.git
synced 2026-06-14 19:20:18 -04:00
Add support for FC929X, which apparently is just a PCI-X version of FC929.
MFC after: 3 days
This commit is contained in:
parent
3b08d5830b
commit
d579f3e4fe
1 changed files with 7 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue