Commit e988867f authored by John Keeping's avatar John Keeping Committed by Ulf Hansson

mmc: dw_mmc-rockchip: correct property names in debug

Following up the device tree fixed in commits e78c6371 ("ARM: dts:
rockchip: Fix DWMMC clocks") and ca9eee95 ("arm64: dts: rockchip:
Fix DWMMC clocks", 2018-02-15), avoid confusion by using the correct
property name in the debug output if clocks are not found.
Signed-off-by: default avatarJohn Keeping <john@metanate.com>
Reviewed-by: default avatarRobin Murphy <robin.murphy@arm.com>
Reviewed-by: default avatarShawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 3715ce57
...@@ -282,11 +282,11 @@ static int dw_mci_rk3288_parse_dt(struct dw_mci *host) ...@@ -282,11 +282,11 @@ static int dw_mci_rk3288_parse_dt(struct dw_mci *host)
priv->drv_clk = devm_clk_get(host->dev, "ciu-drive"); priv->drv_clk = devm_clk_get(host->dev, "ciu-drive");
if (IS_ERR(priv->drv_clk)) if (IS_ERR(priv->drv_clk))
dev_dbg(host->dev, "ciu_drv not available\n"); dev_dbg(host->dev, "ciu-drive not available\n");
priv->sample_clk = devm_clk_get(host->dev, "ciu-sample"); priv->sample_clk = devm_clk_get(host->dev, "ciu-sample");
if (IS_ERR(priv->sample_clk)) if (IS_ERR(priv->sample_clk))
dev_dbg(host->dev, "ciu_sample not available\n"); dev_dbg(host->dev, "ciu-sample not available\n");
host->priv = priv; host->priv = priv;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment