diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2009-01-19 15:53:30 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-02-08 12:50:17 -0500 |
commit | 5c9e02b1abcb227f47529ad72cc4a3234cddae49 (patch) | |
tree | ac8323c3b31f77b008d42b1dd26980a47f32a09c /drivers/mmc/host/omap.c | |
parent | 4c5e1946b5f89c33e3bc8ed73fa7ba8f31e37cc5 (diff) |
[ARM] omap: MMC: convert clocks to match by devid and conid
Convert OMAP MMC driver to match clocks using the device ID and a
connection ID rather than a clock name. This allows us to eliminate
the OMAP1/OMAP2 differences for the function clock.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc/host/omap.c')
-rw-r--r-- | drivers/mmc/host/omap.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index 67d7b7fef084..15eb88343760 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c | |||
@@ -1461,16 +1461,13 @@ static int __init mmc_omap_probe(struct platform_device *pdev) | |||
1461 | goto err_ioremap; | 1461 | goto err_ioremap; |
1462 | 1462 | ||
1463 | if (cpu_is_omap24xx()) { | 1463 | if (cpu_is_omap24xx()) { |
1464 | host->iclk = clk_get(&pdev->dev, "mmc_ick"); | 1464 | host->iclk = clk_get(&pdev->dev, "ick"); |
1465 | if (IS_ERR(host->iclk)) | 1465 | if (IS_ERR(host->iclk)) |
1466 | goto err_free_mmc_host; | 1466 | goto err_free_mmc_host; |
1467 | clk_enable(host->iclk); | 1467 | clk_enable(host->iclk); |
1468 | } | 1468 | } |
1469 | 1469 | ||
1470 | if (!cpu_is_omap24xx()) | 1470 | host->fclk = clk_get(&pdev->dev, "fck"); |
1471 | host->fclk = clk_get(&pdev->dev, "mmc_ck"); | ||
1472 | else | ||
1473 | host->fclk = clk_get(&pdev->dev, "mmc_fck"); | ||
1474 | 1471 | ||
1475 | if (IS_ERR(host->fclk)) { | 1472 | if (IS_ERR(host->fclk)) { |
1476 | ret = PTR_ERR(host->fclk); | 1473 | ret = PTR_ERR(host->fclk); |