mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix probing of SAS1068E with a device ID of 0x0059 after r232411.
Reported by: infofarmer MFC after: 3 days
This commit is contained in:
parent
23d6e518da
commit
6fe8be540f
1 changed files with 6 additions and 0 deletions
|
|
@ -141,6 +141,10 @@ __FBSDID("$FreeBSD$");
|
|||
#define MPI_MANUFACTPAGE_DEVID_SAS1068A_FB 0x0055
|
||||
#endif
|
||||
|
||||
#ifndef MPI_MANUFACTPAGE_DEVID_SAS1068E_FB
|
||||
#define MPI_MANUFACTPAGE_DEVID_SAS1068E_FB 0x0059
|
||||
#endif
|
||||
|
||||
#ifndef MPI_MANUFACTPAGE_DEVID_SAS1078DE_FB
|
||||
#define MPI_MANUFACTPAGE_DEVID_SAS1078DE_FB 0x007C
|
||||
#endif
|
||||
|
|
@ -236,6 +240,7 @@ mpt_pci_probe(device_t dev)
|
|||
case MPI_MANUFACTPAGE_DEVID_SAS1068:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068A_FB:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068E:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068E_FB:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1078:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1078DE_FB:
|
||||
desc = "LSILogic SAS/SATA Adapter";
|
||||
|
|
@ -419,6 +424,7 @@ mpt_pci_attach(device_t dev)
|
|||
case MPI_MANUFACTPAGE_DEVID_SAS1068:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068A_FB:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068E:
|
||||
case MPI_MANUFACTPAGE_DEVID_SAS1068E_FB:
|
||||
mpt->is_sas = 1;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue