summaryrefslogtreecommitdiffstats
path: root/drivers/ide/ppc
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz2007-02-17 02:40:24 +0100
committerBartlomiej Zolnierkiewicz2007-02-17 02:40:24 +0100
commit056a697b7388844a1341e92e277bff8e5bf61ec9 (patch)
treeb548accd5b90d95e9d774ce6a253164808d527a9 /drivers/ide/ppc
parentide: remove ide_drive_t.usage (diff)
downloadkernel-qcow2-linux-056a697b7388844a1341e92e277bff8e5bf61ec9.tar.gz
kernel-qcow2-linux-056a697b7388844a1341e92e277bff8e5bf61ec9.tar.xz
kernel-qcow2-linux-056a697b7388844a1341e92e277bff8e5bf61ec9.zip
ide: unexport ide_set_xfer_rate() (v2)
In cmd64x, siimage and scc_pata drivers: * don't set drive->init_speed as it should be already set by successful execution of ide_set_xfer_rate() * use hwif->speedproc functions directly Above changes allows removal of EXPORT_SYMBOL_GPL(ide_set_xfer_rate). v2: * updated for scc_pata driver Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/ppc')
-rw-r--r--drivers/ide/ppc/scc_pata.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/ide/ppc/scc_pata.c b/drivers/ide/ppc/scc_pata.c
index 3993d08312dc..65ad8ab34598 100644
--- a/drivers/ide/ppc/scc_pata.c
+++ b/drivers/ide/ppc/scc_pata.c
@@ -363,12 +363,9 @@ static int scc_config_chipset_for_dma(ide_drive_t *drive)
if (!speed)
return 0;
- if (ide_set_xfer_rate(drive, speed))
+ if (scc_tune_chipset(drive, speed))
return 0;
- if (!drive->init_speed)
- drive->init_speed = speed;
-
return ide_dma_enable(drive);
}