mmc: davinci: remove matching string
authorDavid Lechner <david@lechnology.com>
Thu, 17 Mar 2016 03:45:32 +0000 (22:45 -0500)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 2 May 2016 08:33:10 +0000 (10:33 +0200)
The string "MMCSDCLK" is not actually used for clock lookup, so can be
removed.

Signed-off-by: David Lechner <david@lechnology.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/davinci_mmc.c

index eb3ca9e..498c42d 100644 (file)
@@ -1241,7 +1241,7 @@ static int __init davinci_mmcsd_probe(struct platform_device *pdev)
                goto out;
 
        ret = -ENXIO;
-       host->clk = clk_get(&pdev->dev, "MMCSDCLK");
+       host->clk = clk_get(&pdev->dev, NULL);
        if (IS_ERR(host->clk)) {
                ret = PTR_ERR(host->clk);
                goto out;