aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci/sgiioc4.c
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-02-16 20:40:26 -0500
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2007-02-16 20:40:26 -0500
commit7469aaf6a30f4187ed6de7c0aed5c2dd2d1c2d31 (patch)
tree079930f23b3d14e4ad29ab972bc6d91fde52e5f0 /drivers/ide/pci/sgiioc4.c
parent3608b5d71a52c053787dbad6af20c25f7e0b75a9 (diff)
ide: make ide_hwif_t.ide_dma_{host_off,off_quietly} void (v2)
* since ide_hwif_t.ide_dma_{host_off,off_quietly} always return '0' make these functions void and while at it drop "ide_" prefix * fix comment for __ide_dma_off_quietly() * make __ide_dma_{host_off,off_quietly,off}() void and drop "__" prefix v2: * while at it rename atiixp_ide_dma_host_off() to atiixp_dma_host_off(), sgiioc4_ide_dma_{host_off,off_quietly}() to sgiioc4_dma_{host_off,off_quietly}() and sl82c105_ide_dma_off_quietly() to sl82c105_dma_off_quietly() [ Noticed by Sergei Shtylyov <sshtylyov@ru.mvista.com>. ] Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/sgiioc4.c')
-rw-r--r--drivers/ide/pci/sgiioc4.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/drivers/ide/pci/sgiioc4.c b/drivers/ide/pci/sgiioc4.c
index cb5c3211bd8e..d9aa20012fc0 100644
--- a/drivers/ide/pci/sgiioc4.c
+++ b/drivers/ide/pci/sgiioc4.c
@@ -282,12 +282,11 @@ sgiioc4_ide_dma_on(ide_drive_t * drive)
282 return HWIF(drive)->ide_dma_host_on(drive); 282 return HWIF(drive)->ide_dma_host_on(drive);
283} 283}
284 284
285static int 285static void sgiioc4_dma_off_quietly(ide_drive_t *drive)
286sgiioc4_ide_dma_off_quietly(ide_drive_t * drive)
287{ 286{
288 drive->using_dma = 0; 287 drive->using_dma = 0;
289 288
290 return HWIF(drive)->ide_dma_host_off(drive); 289 drive->hwif->dma_host_off(drive);
291} 290}
292 291
293static int sgiioc4_ide_dma_check(ide_drive_t *drive) 292static int sgiioc4_ide_dma_check(ide_drive_t *drive)
@@ -317,12 +316,9 @@ sgiioc4_ide_dma_host_on(ide_drive_t * drive)
317 return 1; 316 return 1;
318} 317}
319 318
320static int 319static void sgiioc4_dma_host_off(ide_drive_t * drive)
321sgiioc4_ide_dma_host_off(ide_drive_t * drive)
322{ 320{
323 sgiioc4_clearirq(drive); 321 sgiioc4_clearirq(drive);
324
325 return 0;
326} 322}
327 323
328static int 324static int
@@ -612,10 +608,10 @@ ide_init_sgiioc4(ide_hwif_t * hwif)
612 hwif->ide_dma_end = &sgiioc4_ide_dma_end; 608 hwif->ide_dma_end = &sgiioc4_ide_dma_end;
613 hwif->ide_dma_check = &sgiioc4_ide_dma_check; 609 hwif->ide_dma_check = &sgiioc4_ide_dma_check;
614 hwif->ide_dma_on = &sgiioc4_ide_dma_on; 610 hwif->ide_dma_on = &sgiioc4_ide_dma_on;
615 hwif->ide_dma_off_quietly = &sgiioc4_ide_dma_off_quietly; 611 hwif->dma_off_quietly = &sgiioc4_dma_off_quietly;
616 hwif->ide_dma_test_irq = &sgiioc4_ide_dma_test_irq; 612 hwif->ide_dma_test_irq = &sgiioc4_ide_dma_test_irq;
617 hwif->ide_dma_host_on = &sgiioc4_ide_dma_host_on; 613 hwif->ide_dma_host_on = &sgiioc4_ide_dma_host_on;
618 hwif->ide_dma_host_off = &sgiioc4_ide_dma_host_off; 614 hwif->dma_host_off = &sgiioc4_dma_host_off;
619 hwif->ide_dma_lostirq = &sgiioc4_ide_dma_lostirq; 615 hwif->ide_dma_lostirq = &sgiioc4_ide_dma_lostirq;
620 hwif->ide_dma_timeout = &__ide_dma_timeout; 616 hwif->ide_dma_timeout = &__ide_dma_timeout;
621 617