From: Bartlomiej Zolnierkiewicz Date: Sat, 26 Jan 2008 19:13:00 +0000 (+0100) Subject: icside: add ide_toggle_bounce() calls X-Git-Tag: v2.6.25-rc1~1227^2~54 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=c58096941284ceaea504b2f8c4d146f0f7c86b49;p=linux-2.6-omap-h63xx.git icside: 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. Cc: Russell King Acked-by: Sergei Shtylyov Signed-off-by: Bartlomiej Zolnierkiewicz --- diff --git a/drivers/ide/arm/icside.c b/drivers/ide/arm/icside.c index 673402f4a29..d70442a37e3 100644 --- a/drivers/ide/arm/icside.c +++ b/drivers/ide/arm/icside.c @@ -294,6 +294,7 @@ static void icside_dma_host_off(ide_drive_t *drive) static void icside_dma_off_quietly(ide_drive_t *drive) { drive->using_dma = 0; + ide_toggle_bounce(drive, 0); } static void icside_dma_host_on(ide_drive_t *drive) @@ -303,6 +304,7 @@ static void icside_dma_host_on(ide_drive_t *drive) static int icside_dma_on(ide_drive_t *drive) { drive->using_dma = 1; + ide_toggle_bounce(drive, 1); return 0; }