From ec15125b5b3cc0f7f571dcf5a99dd4975e8eb698 Mon Sep 17 00:00:00 2001 From: thorpej Date: Thu, 30 Nov 2000 18:11:40 +0000 Subject: [PATCH] Don't restrict I/O space to 16-bits on the Promise Ultra/33 boards. Empirical evidence suggests that the board works just fine with an I/O address >= 0x10000. --- sys/dev/pci/pciide.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index e71961e01df8..194756d69384 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $NetBSD: pciide.c,v 1.94 2000/11/26 04:59:18 christos Exp $ */ +/* $NetBSD: pciide.c,v 1.95 2000/11/30 18:11:40 thorpej Exp $ */ /* @@ -369,7 +369,7 @@ const struct pciide_product_desc pciide_acer_products[] = { const struct pciide_product_desc pciide_promise_products[] = { { PCI_PRODUCT_PROMISE_ULTRA33, - IDE_PCI_CLASS_OVERRIDE|IDE_16BIT_IOSPACE, + IDE_PCI_CLASS_OVERRIDE /* |IDE_16BIT_IOSPACE */, "Promise Ultra33/ATA Bus Master IDE Accelerator", pdc202xx_chip_map, },