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: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
Shubhrajyoti Datta 2017-05-02 15:49:56 +05:30 committed by Ulf Hansson
parent 41f1830f5a
commit 940e698c90
1 changed files with 1 additions and 1 deletions

View File

@ -638,7 +638,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
ret = mmc_of_parse(host->mmc);
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;
}