mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ide: remove redundant ->ide_dma_on call from set_using_dma()
ide_set_dma() calls ->ide_dma_on method itself and returns zero only if ->ide_dma_on call succeeded. There should be no functionality changes caused by this patch. Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
4eed504d14
commit
23b1bd459c
1 changed files with 1 additions and 1 deletions
|
@ -852,7 +852,7 @@ int set_using_dma(ide_drive_t *drive, int arg)
|
|||
|
||||
if (arg) {
|
||||
hwif->dma_off_quietly(drive);
|
||||
if (ide_set_dma(drive) || hwif->ide_dma_on(drive))
|
||||
if (ide_set_dma(drive))
|
||||
err = -EIO;
|
||||
} else
|
||||
ide_dma_off(drive);
|
||||
|
|
Loading…
Reference in a new issue