Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 91395a16 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz
Browse files

ide-tape: remove unneeded CONFIG_BLK_DEV_IDEDMA ifdef



PC_FLAG_DMA_IN_PROGRESS flag is never set if DMA support is disabled.

Cc: Borislav Petkov <petkovbb@gmail.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 6bd3b0bf
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -973,11 +973,11 @@ static ide_startstop_t idetape_transfer_pc(ide_drive_t *drive)
	}
	}
	/* Set the interrupt routine */
	/* Set the interrupt routine */
	ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
	ide_set_handler(drive, &idetape_pc_intr, IDETAPE_WAIT_CMD, NULL);
#ifdef CONFIG_BLK_DEV_IDEDMA

	/* Begin DMA, if necessary */
	/* Begin DMA, if necessary */
	if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
	if (pc->flags & PC_FLAG_DMA_IN_PROGRESS)
		hwif->dma_ops->dma_start(drive);
		hwif->dma_ops->dma_start(drive);
#endif

	/* Send the actual packet */
	/* Send the actual packet */
	hwif->output_data(drive, NULL, pc->c, 12);
	hwif->output_data(drive, NULL, pc->c, 12);