aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDoug Ambrisko <ambrisko@FreeBSD.org>2007-09-18 16:39:24 +0000
committerDoug Ambrisko <ambrisko@FreeBSD.org>2007-09-18 16:39:24 +0000
commit079d60f0843e6e30ea96f2df249594229e548055 (patch)
treeedc158dcb226a0c7957bee00911ddfda63a70a4e /sys
parentc99efcf633c95f0f3c0c6d9653ad7dddb46d9018 (diff)
downloadsrc-079d60f0843e6e30ea96f2df249594229e548055.tar.gz
src-079d60f0843e6e30ea96f2df249594229e548055.zip
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
Notes
Notes: svn path=/head/; revision=172219
Diffstat (limited to 'sys')
-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 47c724b2e727..8338f79a35e1 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