diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-15 15:21:48 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-15 15:21:48 -0400 |
commit | 9a410e79b552bacb4481f85618aa7333b7776ed7 (patch) | |
tree | 9a6668d9edb84710c284185d6f860c4361df6ef6 /drivers/ide/ide-tape.c | |
parent | e81a3bde13343bc36613aff8f864def7171b376a (diff) |
ide: remove IDE_TFLAG_NO_SELECT_MASK taskfile flag
Always call SELECT_MASK(..., 0) in ide_tf_load() (needs to be done
to match ide_set_irq(..., 1)) and then remove IDE_TFLAG_NO_SELECT_MASK
taskfile flag.
This change should only affect hpt366 and icside host drivers since
->maskproc(..., 0) for sgiioc4 is equivalent to ide_set_irq(..., 1).
Cc: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-tape.c')
-rw-r--r-- | drivers/ide/ide-tape.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index a5f0b774527b..cc7991c7c252 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c | |||
@@ -1046,8 +1046,7 @@ static ide_startstop_t idetape_issue_pc(ide_drive_t *drive, | |||
1046 | if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma) | 1046 | if ((pc->flags & PC_FLAG_DMA_RECOMMENDED) && drive->using_dma) |
1047 | dma_ok = !hwif->dma_ops->dma_setup(drive); | 1047 | dma_ok = !hwif->dma_ops->dma_setup(drive); |
1048 | 1048 | ||
1049 | ide_pktcmd_tf_load(drive, IDE_TFLAG_NO_SELECT_MASK | | 1049 | ide_pktcmd_tf_load(drive, IDE_TFLAG_OUT_DEVICE, bcount, dma_ok); |
1050 | IDE_TFLAG_OUT_DEVICE, bcount, dma_ok); | ||
1051 | 1050 | ||
1052 | if (dma_ok) | 1051 | if (dma_ok) |
1053 | /* Will begin DMA later */ | 1052 | /* Will begin DMA later */ |