diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-09-29 04:46:50 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-09-29 04:46:50 +0000 |
commit | 9613fcacbc029ada771bce7cea40608b6000df82 (patch) | |
tree | 11d0847aa3a17b04d04d2bfa256c43ed6033ee65 /sys/dev | |
parent | da77d56bf2d483c23d76e5f27306153a79e9cc9c (diff) |
PC87415: Don't claim to support DATA32 or MODE
(now correctly probes the DMA modes).
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pciide.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index c0c5e3d19db..7c8e1a776d3 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.70 2001/09/29 03:28:11 jason Exp $ */ +/* $OpenBSD: pciide.c,v 1.71 2001/09/29 04:46:49 jason Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -3022,8 +3022,7 @@ natsemi_chip_map(sc, pa) printf(": DMA"); pciide_mapreg_dma(sc, pa); - sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32 | - WDC_CAPABILITY_MODE; + sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16; if (sc->sc_dma_ok) { sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA | WDC_CAPABILITY_IRQACK; |