mmc: sdhci-of-arasan: Use signed formatting in error messages
[firefly-linux-kernel-4.4.55.git] / drivers / mmc / host / sdhci-of-arasan.c
index 981d66e5c023147d99ae35a6e9e985e453800058..5f10c22ea3aad496991f39b829a0587abf8fd06a 100644 (file)
@@ -165,7 +165,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
        host = sdhci_pltfm_init(pdev, &sdhci_arasan_pdata, 0);
        if (IS_ERR(host)) {
                ret = PTR_ERR(host);
-               dev_err(&pdev->dev, "platform init failed (%u)\n", ret);
+               dev_err(&pdev->dev, "platform init failed (%d)\n", ret);
                goto clk_disable_all;
        }
 
@@ -176,7 +176,7 @@ static int sdhci_arasan_probe(struct platform_device *pdev)
 
        ret = sdhci_add_host(host);
        if (ret) {
-               dev_err(&pdev->dev, "platform register failed (%u)\n", ret);
+               dev_err(&pdev->dev, "platform register failed (%d)\n", ret);
                goto err_pltfm_free;
        }