svn commit: r233827 - head/sys/dev/mpt
Marius Strobl
marius at FreeBSD.org
Tue Apr 3 08:28:44 UTC 2012
Author: marius
Date: Tue Apr 3 08:28:43 2012
New Revision: 233827
URL: http://svn.freebsd.org/changeset/base/233827
Log:
Fix probing of SAS1068E with a device ID of 0x0059 after r232411.
Reported by: infofarmer
MFC after: 3 days
Modified:
head/sys/dev/mpt/mpt_pci.c
Modified: head/sys/dev/mpt/mpt_pci.c
==============================================================================
--- head/sys/dev/mpt/mpt_pci.c Tue Apr 3 08:24:32 2012 (r233826)
+++ head/sys/dev/mpt/mpt_pci.c Tue Apr 3 08:28:43 2012 (r233827)
@@ -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:
More information about the svn-src-all
mailing list