mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
mxcmmc: Do not pass clock name, we have only one clock for this device
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
parent
cc83e4096c
commit
06277b5c40
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue