diff options
author | Yangbo Lu <yangbo.lu@nxp.com> | 2019-10-21 18:09:08 +0800 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2019-10-29 10:09:21 +0800 |
commit | 2913926f3b3dec282f8773e3c02377c9600d8267 (patch) | |
tree | 4ebe76ee09c7cbdb2661a45748fc0b5de4c63e66 | |
parent | 41dec2fe99512e941261594f522b2e7d485c314b (diff) | |
download | u-boot-2913926f3b3dec282f8773e3c02377c9600d8267.zip u-boot-2913926f3b3dec282f8773e3c02377c9600d8267.tar.gz u-boot-2913926f3b3dec282f8773e3c02377c9600d8267.tar.bz2 |
mmc: fsl_esdhc: remove redundant DM_MMC checking
Remove redundant DM_MMC checking which is already in DM_MMC conditional
compile block.
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
-rw-r--r-- | drivers/mmc/fsl_esdhc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index 4eceec5..03c54c3 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -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", }, |