PATCH: make sure we are looking at the low bits post error

From: Alan Cox
Date: Sun Aug 15 2004 - 09:47:26 EST


diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.8-rc3/drivers/ide/ide-io.c linux-2.6.8-rc3/drivers/ide/ide-io.c
--- linux.vanilla-2.6.8-rc3/drivers/ide/ide-io.c 2004-08-09 15:51:00.000000000 +0100
+++ linux-2.6.8-rc3/drivers/ide/ide-io.c 2004-08-15 00:04:30.000000000 +0100
@@ -197,6 +197,8 @@
args->hobRegister[IDE_DATA_OFFSET] = (data >> 8) & 0xFF;
}
args->tfRegister[IDE_ERROR_OFFSET] = err;
+ /* Be sure we're looking at the low order bits */
+ hwif->OUTB(drive->ctl & ~0x80,IDE_CONTROL_REG);
args->tfRegister[IDE_NSECTOR_OFFSET] = hwif->INB(IDE_NSECTOR_REG);
args->tfRegister[IDE_SECTOR_OFFSET] = hwif->INB(IDE_SECTOR_REG);
args->tfRegister[IDE_LCYL_OFFSET] = hwif->INB(IDE_LCYL_REG);


Signed-off-by: Alan Cox <alan@xxxxxxxxxx> from an original bug report by
Brett Russ <russb@xxxxxxx>

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/