diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1999-07-25 04:42:32 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 1999-07-25 04:42:32 +0000 |
commit | 7c82046e621c85d85b87aaa0519535530e5c9d83 (patch) | |
tree | af93c9c45f806815852bce9578e93df1df628d72 | |
parent | 5ece25a2d714f31181d1552993f7bc35879db30a (diff) |
I've gotten complaints about failed DMA with the Acer Labs PCI IDE
chipset. I will disable it until the arrival of the Acer databook so
I can validate the driver against some specs.
-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 108cf885af0..0dcadb26c87 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.4 1999/07/22 04:37:30 deraadt Exp $ */ +/* $OpenBSD: pciide.c,v 1.5 1999/07/25 04:42:31 csapuntz Exp $ */ /* $NetBSD: pciide.c,v 1.40 1999/07/12 13:49:38 bouyer Exp $ */ /* @@ -320,6 +320,7 @@ const struct pciide_product_desc pciide_sis_products[] = { } }; +#ifdef notyet const struct pciide_product_desc pciide_acer_products[] = { { PCI_PRODUCT_ALI_M5229, /* Acer Labs M5229 UDMA IDE */ 0, @@ -329,6 +330,7 @@ const struct pciide_product_desc pciide_acer_products[] = { acer_channel_map } }; +#endif struct pciide_vendor_desc { u_int32_t ide_vendor; @@ -347,8 +349,10 @@ const struct pciide_vendor_desc pciide_vendors[] = { sizeof(pciide_cypress_products)/sizeof(pciide_cypress_products[0]) }, { PCI_VENDOR_SIS, pciide_sis_products, sizeof(pciide_sis_products)/sizeof(pciide_sis_products[0]) }, +#ifdef notyet { PCI_VENDOR_ALI, pciide_acer_products, sizeof(pciide_acer_products)/sizeof(pciide_acer_products[0]) } +#endif }; #define PCIIDE_CHANNEL_NAME(chan) ((chan) == 0 ? "channel 0" : "channel 1") |