Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci Don't restrict I/O space to 16-bits on the Promi...



details:   https://anonhg.NetBSD.org/src/rev/921bca35dc14
branches:  trunk
changeset: 499836:921bca35dc14
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Nov 30 18:11:40 2000 +0000

description:
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.

diffstat:

 sys/dev/pci/pciide.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r dab3ec645541 -r 921bca35dc14 sys/dev/pci/pciide.c
--- a/sys/dev/pci/pciide.c      Thu Nov 30 16:06:25 2000 +0000
+++ b/sys/dev/pci/pciide.c      Thu Nov 30 18:11:40 2000 +0000
@@ -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_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,
        },



Home | Main Index | Thread Index | Old Index