]> git.sur5r.net Git - u-boot/commitdiff
dm: mmc: fsl_esdhc: Drop mmc_init() call from fsl_esdhc_init()
authorSimon Glass <sjg@chromium.org>
Sat, 29 Jul 2017 17:35:22 +0000 (11:35 -0600)
committerJaehoon Chung <jh80.chung@samsung.com>
Thu, 17 Aug 2017 07:44:17 +0000 (16:44 +0900)
We want to use fsl_esdhc_init() with driver model. Move the mmc_init() out
of this function so that we can use it for our common init.

Signed-off-by: Simon Glass <sjg@chromium.org>
drivers/mmc/fsl_esdhc.c

index bb6fac2f39d5a6a0b92c5bcfa6996d8ae0963d6c..662824fda1324280788bb5b9755a96f11645429a 100644 (file)
@@ -765,7 +765,6 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
 {
        struct mmc_config *cfg;
        struct fsl_esdhc *regs;
-       struct mmc *mmc;
        u32 caps, voltage_caps;
        int ret;
 
@@ -856,12 +855,6 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
 
        cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
 
-       mmc = mmc_create(cfg, priv);
-       if (mmc == NULL)
-               return -1;
-
-       priv->mmc = mmc;
-
        return 0;
 }
 
@@ -885,6 +878,7 @@ int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg)
 {
        struct fsl_esdhc_plat *plat;
        struct fsl_esdhc_priv *priv;
+       struct mmc *mmc;
        int ret;
 
        if (!cfg)
@@ -915,6 +909,12 @@ int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg)
                return ret;
        }
 
+       mmc = mmc_create(&plat->cfg, priv);
+       if (!mmc)
+               return -EIO;
+
+       priv->mmc = mmc;
+
        return 0;
 }