diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-07-08 05:59:40 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-07-08 05:59:40 +0000 |
commit | 2ea38dfff2641384201429c9fef952c320e03fbc (patch) | |
tree | c3eeaba08491c5a3572dad0805a9e4b04f6abf66 /sys/dev | |
parent | 7140b2d09980706c85f1cd0a594223c42f8ab759 (diff) |
Remove the IDE_PCI_CLASS_OVERRIDE quirk flag for the Intel AHCI controllers
as they're of the subclass SATA and the SiI3512 SATA controller as it is of
the subclass MISC.
ok jsg@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pciide.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index 295c72ffa4a..86901285a2e 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.285 2008/07/06 10:38:52 jsg Exp $ */ +/* $OpenBSD: pciide.c,v 1.286 2008/07/08 05:59:39 brad Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -444,7 +444,7 @@ const struct pciide_product_desc pciide_intel_products[] = { piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801GR_AHCI, /* Intel 82801GR (ICH7R) AHCI */ - IDE_PCI_CLASS_OVERRIDE, + 0, piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801GR_RAID, /* Intel 82801GR (ICH7R) RAID */ @@ -456,7 +456,7 @@ const struct pciide_product_desc pciide_intel_products[] = { piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801GBM_AHCI, /* Intel 82801GBM (ICH7M) AHCI */ - IDE_PCI_CLASS_OVERRIDE, + 0, piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801GHM_RAID, /* Intel 82801GHM (ICH7M DH) RAID */ @@ -468,7 +468,7 @@ const struct pciide_product_desc pciide_intel_products[] = { piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801H_AHCI_6P, /* Intel 82801H (ICH8) AHCI */ - IDE_PCI_CLASS_OVERRIDE, + 0, piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801H_RAID, /* Intel 82801H (ICH8) RAID */ @@ -476,7 +476,7 @@ const struct pciide_product_desc pciide_intel_products[] = { piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801H_AHCI_4P, /* Intel 82801H (ICH8) AHCI */ - IDE_PCI_CLASS_OVERRIDE, + 0, piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801H_SATA_2, /* Intel 82801H (ICH8) SATA */ @@ -488,7 +488,7 @@ const struct pciide_product_desc pciide_intel_products[] = { piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801HBM_AHCI, /* Intel 82801HBM (ICH8M) AHCI */ - IDE_PCI_CLASS_OVERRIDE, + 0, piixsata_chip_map }, { PCI_PRODUCT_INTEL_82801HBM_RAID, /* Intel 82801HBM (ICH8M) RAID */ @@ -600,7 +600,7 @@ const struct pciide_product_desc pciide_cmd_products[] = { sii3112_chip_map }, { PCI_PRODUCT_CMDTECH_3512, /* SiI3512 SATA */ - IDE_PCI_CLASS_OVERRIDE, + 0, sii3112_chip_map }, { PCI_PRODUCT_CMDTECH_AAR_1210SA, /* Adaptec AAR-1210SA */ |