diff options
-rw-r--r-- | drivers/ide/ide-cd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index d4b298eb5ef..30f27585a7d 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c | |||
@@ -1826,7 +1826,7 @@ static ide_startstop_t cdrom_write_intr(ide_drive_t *drive) | |||
1826 | } | 1826 | } |
1827 | 1827 | ||
1828 | /* Read the interrupt reason and the transfer length. */ | 1828 | /* Read the interrupt reason and the transfer length. */ |
1829 | ireason = HWIF(drive)->INB(IDE_IREASON_REG); | 1829 | ireason = HWIF(drive)->INB(IDE_IREASON_REG) & 0x3; |
1830 | lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG); | 1830 | lowcyl = HWIF(drive)->INB(IDE_BCOUNTL_REG); |
1831 | highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG); | 1831 | highcyl = HWIF(drive)->INB(IDE_BCOUNTH_REG); |
1832 | 1832 | ||