diff options
author | Ye Li <ye.li@nxp.com> | 2016-11-08 14:21:41 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2016-11-08 14:21:41 +0800 |
commit | c1de6a58e44f4770b32a41e3689884abf7449e1b (patch) | |
tree | 474afb63c6e6fd047abda604695a76bf66434404 | |
parent | c1bf2d975be66597f8fc25c9eef0f02bda3c5050 (diff) | |
download | u-boot-imx-c1de6a58e44f4770b32a41e3689884abf7449e1b.zip u-boot-imx-c1de6a58e44f4770b32a41e3689884abf7449e1b.tar.gz u-boot-imx-c1de6a58e44f4770b32a41e3689884abf7449e1b.tar.bz2 |
MLK-13440-5 fsl_usdhc: Remove the CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT
Since we have added the "vs18_enable" parameter for fixed 1.8v I/O, remove
the CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT. This configuration can only work
with one MMC device. If more devices are supported, this will set 1.8v to
all controllers, so will cause problem to 3.3v devices.
Signed-off-by: Ye Li <ye.li@nxp.com>
-rw-r--r-- | drivers/mmc/fsl_esdhc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index 6bf061b..d357946 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -640,10 +640,6 @@ static int esdhc_init(struct mmc *mmc) /* Set timout to the maximum value */ esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); -#ifdef CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT - esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); -#endif - if (cfg->vs18_enable) esdhc_setbits32(®s->vendorspec, ESDHC_VENDORSPEC_VSELECT); |