diff options
author | Shubhrajyoti Datta <[email protected]> | 2017-05-02 15:49:56 +0530 |
---|---|---|
committer | Ulf Hansson <[email protected]> | 2017-06-20 10:30:07 +0200 |
commit | 940e698c902537dac147752d787ff95aad4b6dc5 (patch) | |
tree | bcdc5f7b307706e954442e0c5a55cb8ff2b9a763 | |
parent | 41f1830f5a7af77cf5c86359aba3cbd706687e52 (diff) |
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 <[email protected]>
Acked-by: Adrian Hunter <[email protected]>
Signed-off-by: Ulf Hansson <[email protected]>
-rw-r--r-- | drivers/mmc/host/sdhci-of-arasan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c index ea6b36c88ae7..b13c0a7d50e4 100644 --- a/drivers/mmc/host/sdhci-of-arasan.c +++ b/drivers/mmc/host/sdhci-of-arasan.c @@ -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; } |