提交 940e698c 编写于 作者: S Shubhrajyoti Datta 提交者: Ulf Hansson

mmc: sdhci-of-arasan: Trivial print fix

ret is signed however is printed as unsigned fix the same.
If printed as a negative number the result is easier to read.
No functional change.
Signed-off-by: NShubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
Acked-by: NAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
上级 41f1830f
...@@ -638,7 +638,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev) ...@@ -638,7 +638,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
ret = mmc_of_parse(host->mmc); ret = mmc_of_parse(host->mmc);
if (ret) { if (ret) {
dev_err(&pdev->dev, "parsing dt failed (%u)\n", ret); dev_err(&pdev->dev, "parsing dt failed (%d)\n", ret);
goto unreg_clk; goto unreg_clk;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册