diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2006-03-28 12:56:45 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2006-03-28 12:56:45 +0000 |
commit | 6ecfcf416b5371b4e71a9d8a6e3b68bf1f94b391 (patch) | |
tree | f3af47728e1c0cbf4c9c5920f1f396f9b9f2cb71 /sys/dev/pci | |
parent | 9106dc25c1f58112521f4360e5e401ecc3624d6f (diff) |
Add Intel 82801GB (ICH7M) SATA;
reported by Gabor Micsko <trey@hup.hu>; ok jsg@ marco@ kettenis@
Diffstat (limited to 'sys/dev/pci')
-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 0aace7faf0f..90ad2b0ba4d 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.229 2006/03/27 20:33:38 kettenis Exp $ */ +/* $OpenBSD: pciide.c,v 1.230 2006/03/28 12:56:44 robert Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -437,6 +437,10 @@ const struct pciide_product_desc pciide_intel_products[] = { { PCI_PRODUCT_INTEL_82801GB_SATA_1, /* Intel 82801GB (ICH7) SATA */ IDE_PCI_CLASS_OVERRIDE, piixsata_chip_map + }, + { PCI_PRODUCT_INTEL_82801GBM_SATA, /* Intel 82801GB (ICH7M) SATA */ + IDE_PCI_CLASS_OVERRIDE, + piixsata_chip_map } }; |