]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mx6qsabresd: Return status when initializing MMC
authorOtavio Salvador <otavio@ossystems.com.br>
Fri, 19 Apr 2013 03:41:58 +0000 (03:41 +0000)
committerStefano Babic <sbabic@denx.de>
Thu, 25 Apr 2013 19:32:45 +0000 (21:32 +0200)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
board/freescale/mx6qsabresd/mx6qsabresd.c

index 0d7cb9efd0233b6236be623a2486389597c44af0..bf9beef014720614c041508231f0906210bee96f 100644 (file)
@@ -166,6 +166,7 @@ int board_mmc_getcd(struct mmc *mmc)
 
 int board_mmc_init(bd_t *bis)
 {
+       s32 status = 0;
        int i;
 
        /*
@@ -196,15 +197,15 @@ int board_mmc_init(bd_t *bis)
                        break;
                default:
                        printf("Warning: you configured more USDHC controllers"
-                               "(%d) than supported by the board\n", i + 1);
-                       return 0;
-              }
+                              "(%d) then supported by the board (%d)\n",
+                              i + 1, CONFIG_SYS_FSL_USDHC_NUM);
+                       return status;
+               }
 
-              if (fsl_esdhc_initialize(bis, &usdhc_cfg[i]))
-                       printf("Warning: failed to initialize mmc dev %d\n", i);
+               status |= fsl_esdhc_initialize(bis, &usdhc_cfg[i]);
        }
 
-       return 0;
+       return status;
 }
 #endif