au1xxx-ide: add ide_toggle_bounce() calls

Add ide_toggle_bounce() call to ->ide_dma_on/->dma_off_quietly
methods so they match generic __ide_dma_on()/ide_dma_off_quietly().

Since there is no PCI device there should be no functionality
changes caused by this patch.
Acked-by: default avatarSergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent c5809694
...@@ -402,6 +402,7 @@ static void auide_dma_host_on(ide_drive_t *drive) ...@@ -402,6 +402,7 @@ static void auide_dma_host_on(ide_drive_t *drive)
static int auide_dma_on(ide_drive_t *drive) static int auide_dma_on(ide_drive_t *drive)
{ {
drive->using_dma = 1; drive->using_dma = 1;
ide_toggle_bounce(drive, 1);
return 0; return 0;
} }
...@@ -413,6 +414,7 @@ static void auide_dma_host_off(ide_drive_t *drive) ...@@ -413,6 +414,7 @@ static void auide_dma_host_off(ide_drive_t *drive)
static void auide_dma_off_quietly(ide_drive_t *drive) static void auide_dma_off_quietly(ide_drive_t *drive)
{ {
drive->using_dma = 0; drive->using_dma = 0;
ide_toggle_bounce(drive, 0);
} }
static void auide_dma_lost_irq(ide_drive_t *drive) static void auide_dma_lost_irq(ide_drive_t *drive)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment