diff options
author | Peng Fan <peng.fan@nxp.com> | 2017-06-12 17:50:55 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-07-12 09:44:22 +0200 |
commit | f34ccce50a1805a6fdb2d1604ec4e40d79302455 (patch) | |
tree | 5ae7352495e110941cb517422c023ea92340deda /board | |
parent | 4483b7eb8874cb78a1ebddfcd599bec00c87ab71 (diff) |
mmc: fsl_esdhc: drop CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT
CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT is not the correct method
to set I/O to 1.8. To boards that does not support vqmmc-supply,
use vs18_enable in fsl_esdhc_cfg. If regulator is supported,
use fixed 1.8V regulator for vqmmc-supply.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: York Sun <york.sun@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board')
-rw-r--r-- | board/warp/warp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/warp/warp.c b/board/warp/warp.c index 0bc0a6a92e6..b1b528a4705 100644 --- a/board/warp/warp.c +++ b/board/warp/warp.c @@ -62,7 +62,7 @@ static void setup_iomux_uart(void) } static struct fsl_esdhc_cfg usdhc_cfg[1] = { - {USDHC2_BASE_ADDR}, + {USDHC2_BASE_ADDR, 0, 0, 0, 1}, }; int board_mmc_getcd(struct mmc *mmc) |