diff options
Diffstat (limited to 'drivers/ide/ide-atapi.c')
-rw-r--r-- | drivers/ide/ide-atapi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/ide/ide-atapi.c b/drivers/ide/ide-atapi.c index 89d2339bdef3..db6e617790bd 100644 --- a/drivers/ide/ide-atapi.c +++ b/drivers/ide/ide-atapi.c | |||
@@ -342,8 +342,10 @@ static ide_startstop_t ide_pc_intr(ide_drive_t *drive) | |||
342 | stat = tp_ops->read_status(hwif); | 342 | stat = tp_ops->read_status(hwif); |
343 | 343 | ||
344 | if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) { | 344 | if (pc->flags & PC_FLAG_DMA_IN_PROGRESS) { |
345 | int rc = hwif->dma_ops->dma_end(drive); | 345 | int rc; |
346 | 346 | ||
347 | drive->waiting_for_dma = 0; | ||
348 | rc = hwif->dma_ops->dma_end(drive); | ||
347 | ide_destroy_dmatable(drive); | 349 | ide_destroy_dmatable(drive); |
348 | 350 | ||
349 | if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) { | 351 | if (rc || (drive->media == ide_tape && (stat & ATA_ERR))) { |