Add ide_toggle_bounce() call to ->ide_dma_on/->dma_off_quietly
methods so they match generic __ide_dma_on()/ide_dma_off_quietly().
Tested on Altix by Jeremy.
Acked-by: Jeremy Higdon <[email protected]>
Acked-by: Sergei Shtylyov <[email protected]>
Signed-off-by: Bartlomiej Zolnierkiewicz <[email protected]>
sgiioc4_ide_dma_on(ide_drive_t * drive)
{
drive->using_dma = 1;
+ ide_toggle_bounce(drive, 1);
return 0;
}
static void sgiioc4_dma_off_quietly(ide_drive_t *drive)
{
drive->using_dma = 0;
+ ide_toggle_bounce(drive, 0);
drive->hwif->dma_host_off(drive);
}