diff options
| author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:00 -0500 |
|---|---|---|
| committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-01-26 14:13:00 -0500 |
| commit | c58096941284ceaea504b2f8c4d146f0f7c86b49 (patch) | |
| tree | 779e16bf7e2e74319cbdcf2b9e4e809501b2f391 | |
| parent | e5efba33289574a08674f7613eb0513bcb44d085 (diff) | |
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 <rmk@arm.linux.org.uk>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
| -rw-r--r-- | drivers/ide/arm/icside.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ide/arm/icside.c b/drivers/ide/arm/icside.c index 673402f4a295..d70442a37e34 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) | |||
| 294 | static void icside_dma_off_quietly(ide_drive_t *drive) | 294 | static void icside_dma_off_quietly(ide_drive_t *drive) |
| 295 | { | 295 | { |
| 296 | drive->using_dma = 0; | 296 | drive->using_dma = 0; |
| 297 | ide_toggle_bounce(drive, 0); | ||
| 297 | } | 298 | } |
| 298 | 299 | ||
| 299 | static void icside_dma_host_on(ide_drive_t *drive) | 300 | static void icside_dma_host_on(ide_drive_t *drive) |
| @@ -303,6 +304,7 @@ static void icside_dma_host_on(ide_drive_t *drive) | |||
| 303 | static int icside_dma_on(ide_drive_t *drive) | 304 | static int icside_dma_on(ide_drive_t *drive) |
| 304 | { | 305 | { |
| 305 | drive->using_dma = 1; | 306 | drive->using_dma = 1; |
| 307 | ide_toggle_bounce(drive, 1); | ||
| 306 | 308 | ||
| 307 | return 0; | 309 | return 0; |
| 308 | } | 310 | } |
