Skip to content

Commit

Permalink
sgiioc4: add ide_toggle_bounce() calls
Browse files Browse the repository at this point in the history
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 <jeremy@sgi.com>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Jan 26, 2008
1 parent 8704de8 commit e5efba3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/ide/pci/sgiioc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,15 @@ static int
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);
}
Expand Down

0 comments on commit e5efba3

Please sign in to comment.