diff options
| author | Søren Schmidt <sos@FreeBSD.org> | 2001-01-05 15:23:06 +0000 |
|---|---|---|
| committer | Søren Schmidt <sos@FreeBSD.org> | 2001-01-05 15:23:06 +0000 |
| commit | f0915b3708e6c60e5257c41ecb11c13a6e7fa16a (patch) | |
| tree | 5e39c0a4d1324b1e90fd4e09cbb65e9a10bd9668 | |
| parent | 3b980312b49a62590cb437af64cdb3cca4160648 (diff) | |
Notes
| -rw-r--r-- | sys/dev/ata/ata-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ata/ata-dma.c b/sys/dev/ata/ata-dma.c index 8e818ba020e9..01860a8bd120 100644 --- a/sys/dev/ata/ata-dma.c +++ b/sys/dev/ata/ata-dma.c @@ -291,7 +291,7 @@ ata_dmainit(struct ata_softc *scp, int device, "Aladdin: two atapi devices on this channel, no DMA\n"); break; } - if (udmamode >= 2 && pci_get_revid(parent) > 0x20) { + if (udmamode >= 2 && pci_get_revid(parent) >= 0x20) { int32_t word54 = pci_read_config(parent, 0x54, 4); error = ata_command(scp, device, ATA_C_SETFEATURES, 0, 0, 0, |
