summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2010-03-15 11:05:44 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2010-03-15 11:05:44 +0000
commit8a0511f6437d5c6de63db694d280b43d1b8d3426 (patch)
treeb007b933d0a3e75e936d2ad0a8ed88b3f5221f90 /sys
parent5c6bca1df15b60992ff8b94ff918b7b1d551ce80 (diff)
Add id for Intel 82801JI RAID. Lets HP GL360 G6 see internal SATA
drives. Reported on misc@ by 'a b <rclocal () yahoo ! co ! uk', who also tested the diff from Brad. ok kettenis@ for 4.7.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/ahci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c
index 4aab62019fa..8d1ebe43aa6 100644
--- a/sys/dev/pci/ahci.c
+++ b/sys/dev/pci/ahci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ahci.c,v 1.158 2010/01/21 10:16:44 sthen Exp $ */
+/* $OpenBSD: ahci.c,v 1.159 2010/03/15 11:05:43 krw Exp $ */
/*
* Copyright (c) 2006 David Gwynne <dlg@openbsd.org>
@@ -442,6 +442,8 @@ static const struct ahci_device ahci_devices[] = {
{ PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_RAID,
NULL, NULL },
+ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_RAID,
+ NULL, NULL },
{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_AHCI_2,
NULL, ahci_nvidia_mcp_attach },