diff options
author | 2006-06-24 10:11:03 +0000 | |
---|---|---|
committer | 2006-06-24 10:11:03 +0000 | |
commit | 4cd1a6136ca0a9dadcd23ca36d2975d0793cb295 (patch) | |
tree | 57e4211c0216e2f393f0e7dd04ecf22b08c90c87 /sys/dev/pci/pciide.c | |
parent | Support for Promise PDC205xx based SATA controllers; adapted (diff) | |
download | wireguard-openbsd-4cd1a6136ca0a9dadcd23ca36d2975d0793cb295.tar.xz wireguard-openbsd-4cd1a6136ca0a9dadcd23ca36d2975d0793cb295.zip |
Somehow managed to miss including the part of Henrik's diff where
we actually match the PCI ID of the 40518 controller.
Pointed out by Henrik Flodell.
Diffstat (limited to 'sys/dev/pci/pciide.c')
-rw-r--r-- | sys/dev/pci/pciide.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index 4ed9b1550a3..04a75dc8259 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.240 2006/06/24 07:51:30 jsg Exp $ */ +/* $OpenBSD: pciide.c,v 1.241 2006/06/24 10:11:03 jsg Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -714,6 +714,10 @@ const struct pciide_product_desc pciide_promise_products[] = { IDE_PCI_CLASS_OVERRIDE, pdcsata_chip_map, }, + { PCI_PRODUCT_PROMISE_PDC40518, + IDE_PCI_CLASS_OVERRIDE, + pdcsata_chip_map, + }, { PCI_PRODUCT_PROMISE_PDC40718, IDE_PCI_CLASS_OVERRIDE, pdcsata_chip_map, |