diff options
author | 2010-03-15 19:54:54 +0000 | |
---|---|---|
committer | 2010-03-15 19:54:54 +0000 | |
commit | a8d84929f743c5041f7d8cd60cc41ecdb7f2f450 (patch) | |
tree | 7a23c4baec6206c7179bb31beec2ed4e9153fcac | |
parent | also print certificate type (user or host) for ssh-keygen -L (diff) | |
download | wireguard-openbsd-a8d84929f743c5041f7d8cd60cc41ecdb7f2f450.tar.xz wireguard-openbsd-a8d84929f743c5041f7d8cd60cc41ecdb7f2f450.zip |
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 }, |