From: Sascha Hauer Date: Mon, 23 Feb 2009 12:33:31 +0000 (+0100) Subject: mxcmmc: Do not pass clock name, we have only one clock for this device X-Git-Tag: v2.6.30-rc1~636^2~29^2~6 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=06277b5c40be283779d55db16b50fc201a2ff8bb;p=karo-tx-linux.git mxcmmc: Do not pass clock name, we have only one clock for this device Signed-off-by: Sascha Hauer --- diff --git a/drivers/mmc/host/mxcmmc.c b/drivers/mmc/host/mxcmmc.c index dda0be4e25dc..776230df3df5 100644 --- a/drivers/mmc/host/mxcmmc.c +++ b/drivers/mmc/host/mxcmmc.c @@ -707,7 +707,7 @@ static int mxcmci_probe(struct platform_device *pdev) host->res = r; host->irq = irq; - host->clk = clk_get(&pdev->dev, "sdhc_clk"); + host->clk = clk_get(&pdev->dev, NULL); if (IS_ERR(host->clk)) { ret = PTR_ERR(host->clk); goto out_iounmap;