mmc: fsl_esdhc: remove redundant DM_MMC checking
authorYangbo Lu <yangbo.lu@nxp.com>
Mon, 21 Oct 2019 10:09:08 +0000 (18:09 +0800)
committerPeng Fan <peng.fan@nxp.com>
Tue, 29 Oct 2019 02:09:21 +0000 (10:09 +0800)
Remove redundant DM_MMC checking which is already in DM_MMC conditional
compile block.

Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
drivers/mmc/fsl_esdhc.c

index 4eceec5feb9e474fa430f8a677ac6134c7102977..03c54c3a7f5987fe0a628c8415b1be6ccb21b3b8 100644 (file)
@@ -1026,7 +1026,6 @@ static int fsl_esdhc_probe(struct udevice *dev)
        return esdhc_init_common(priv, mmc);
 }
 
-#if CONFIG_IS_ENABLED(DM_MMC)
 static int fsl_esdhc_get_cd(struct udevice *dev)
 {
        struct fsl_esdhc_priv *priv = dev_get_priv(dev);
@@ -1059,7 +1058,6 @@ static const struct dm_mmc_ops fsl_esdhc_ops = {
        .execute_tuning = fsl_esdhc_execute_tuning,
 #endif
 };
-#endif
 
 static const struct udevice_id fsl_esdhc_ids[] = {
        { .compatible = "fsl,esdhc", },