mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix an incorrect PCI device id. The current value conflicts with
the mfi(4) LSI MegaSAS RAID card. Looking at the Linux driver for the mpt(4) it should be 0x0062 and not 0x0060. Tested with an mfi card of this device id. Approved by: re (bmah) Reviewed by: scottl MFC after: 3 days
This commit is contained in:
parent
c99efcf633
commit
079d60f084
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ __FBSDID("$FreeBSD$");
|
|||
#endif
|
||||
|
||||
#ifndef PCI_PRODUCT_LSI_SAS1078
|
||||
#define PCI_PRODUCT_LSI_SAS1078 0x0060
|
||||
#define PCI_PRODUCT_LSI_SAS1078 0x0062
|
||||
#endif
|
||||
|
||||
#ifndef PCIM_CMD_SERRESPEN
|
||||
|
|
|
|||
Loading…
Reference in a new issue