diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2010-03-15 19:54:55 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2010-03-15 19:54:55 +0000 |
commit | bc18b853cb4d107ea5b269a6af98c4bad544fecf (patch) | |
tree | f95e827657f2442d00c32e3e005e0112299b6f79 | |
parent | d4b2c7bf874cdea856ae4ce0cb5829408b826e69 (diff) |
Add support for 82801HBM RAID. 'that diff can go in' kettenis@
-rw-r--r-- | sys/dev/pci/ahci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c index 8d1ebe43aa6..2010a5973b6 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.159 2010/03/15 11:05:43 krw Exp $ */ +/* $OpenBSD: ahci.c,v 1.160 2010/03/15 19:54:54 drahn 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_82801HBM_RAID, + NULL, NULL }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_RAID, NULL, NULL }, |