summaryrefslogtreecommitdiffstats
path: root/sys/dev/mpt
diff options
context:
space:
mode:
authorambrisko <ambrisko@FreeBSD.org>2007-09-18 16:39:24 +0000
committerambrisko <ambrisko@FreeBSD.org>2007-09-18 16:39:24 +0000
commitec62043bda5866bc1c94f6f9854b000cedb136a6 (patch)
treeedc158dcb226a0c7957bee00911ddfda63a70a4e /sys/dev/mpt
parentaf4581daa3b78241d03ce0070a301d0e3f74f81e (diff)
downloadFreeBSD-src-ec62043bda5866bc1c94f6f9854b000cedb136a6.zip
FreeBSD-src-ec62043bda5866bc1c94f6f9854b000cedb136a6.tar.gz
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
Diffstat (limited to 'sys/dev/mpt')
-rw-r--r--sys/dev/mpt/mpt_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mpt/mpt_pci.c b/sys/dev/mpt/mpt_pci.c
index 47c724b..8338f79 100644
--- a/sys/dev/mpt/mpt_pci.c
+++ b/sys/dev/mpt/mpt_pci.c
@@ -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
OpenPOWER on IntegriCloud