exynos: be more verbose in process_nodes()
authorTobias Jakobi <tjakobi@math.uni-bielefeld.de>
Mon, 5 Oct 2015 11:47:52 +0000 (13:47 +0200)
committerMinkyu Kang <mk7.kang@samsung.com>
Tue, 13 Oct 2015 11:22:28 +0000 (20:22 +0900)
In case sdhci_get_config() or do_sdhci_init() fail, show
the error code that was returned.

Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
Signed-off-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/mmc/s5p_sdhci.c

index bd9e014..b203bee 100644 (file)
@@ -170,7 +170,7 @@ static int sdhci_get_config(const void *blob, int node, struct sdhci_host *host)
 static int process_nodes(const void *blob, int node_list[], int count)
 {
        struct sdhci_host *host;
-       int i, node;
+       int i, node, ret;
        int failed = 0;
 
        debug("%s: count = %d\n", __func__, count);
@@ -183,14 +183,16 @@ static int process_nodes(const void *blob, int node_list[], int count)
 
                host = &sdhci_host[i];
 
-               if (sdhci_get_config(blob, node, host)) {
-                       printf("%s: failed to decode dev %d\n", __func__, i);
+               ret = sdhci_get_config(blob, node, host);
+               if (ret) {
+                       printf("%s: failed to decode dev %d (%d)\n",    __func__, i, ret);
                        failed++;
                        continue;
                }
 
-               if (do_sdhci_init(host)) {
-                       printf("%s: failed to initialize dev %d\n", __func__, i);
+               ret = do_sdhci_init(host);
+               if (ret) {
+                       printf("%s: failed to initialize dev %d (%d)\n", __func__, i, ret);
                        failed++;
                }
        }