diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:02 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:02 -0500 |
commit | f37aaf9edeba3f4ae10d22aefc09c06af9ea39b6 (patch) | |
tree | 167b73d875f3f5c36e9c4378d6e499cf08a46205 /drivers/ide/ide-dma.c | |
parent | 8ae60e34dd737ed3bef64b08130478393d9c4e8a (diff) |
ide: move drive->using_dma check to callers of ->dma_host_on method
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ide-dma.c')
-rw-r--r-- | drivers/ide/ide-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c index edd0018c4988..780911e0537e 100644 --- a/drivers/ide/ide-dma.c +++ b/drivers/ide/ide-dma.c | |||
@@ -471,7 +471,7 @@ EXPORT_SYMBOL(ide_dma_off); | |||
471 | 471 | ||
472 | void ide_dma_host_on(ide_drive_t *drive) | 472 | void ide_dma_host_on(ide_drive_t *drive) |
473 | { | 473 | { |
474 | if (drive->using_dma) { | 474 | if (1) { |
475 | ide_hwif_t *hwif = HWIF(drive); | 475 | ide_hwif_t *hwif = HWIF(drive); |
476 | u8 unit = (drive->select.b.unit & 0x01); | 476 | u8 unit = (drive->select.b.unit & 0x01); |
477 | u8 dma_stat = hwif->INB(hwif->dma_status); | 477 | u8 dma_stat = hwif->INB(hwif->dma_status); |