summaryrefslogtreecommitdiff
path: root/drivers/mmc/fsl_esdhc_imx.c
diff options
context:
space:
mode:
authorJaehoon Chung <jh80.chung@samsung.com>2021-05-31 02:31:49 +0300
committerPeng Fan <peng.fan@nxp.com>2021-06-22 07:03:11 +0300
commit2da2335a18a1b7123da08c325fdcd7960c0f0642 (patch)
tree0d14b64da962d4cb546017ab632a83255958e580 /drivers/mmc/fsl_esdhc_imx.c
parent5c2beda545dde4d27c0e893e97c74740ff27ff2f (diff)
downloadu-boot-2da2335a18a1b7123da08c325fdcd7960c0f0642.tar.xz
mmc: fsl_esdhc_imx: use mmc_send_cmd instead of dm_mmc_send_cmd
Use mmc_send_cmd instead of dm_mmc_send_cmd. It doesn't need to distinguish this function. Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/mmc/fsl_esdhc_imx.c')
-rw-r--r--drivers/mmc/fsl_esdhc_imx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
index 566ce046ae..40c797c990 100644
--- a/drivers/mmc/fsl_esdhc_imx.c
+++ b/drivers/mmc/fsl_esdhc_imx.c
@@ -865,7 +865,7 @@ static void esdhc_stop_tuning(struct mmc *mmc)
cmd.cmdarg = 0;
cmd.resp_type = MMC_RSP_R1b;
- dm_mmc_send_cmd(mmc->dev, &cmd, NULL);
+ mmc_send_cmd(mmc, &cmd, NULL);
}
static int fsl_esdhc_execute_tuning(struct udevice *dev, uint32_t opcode)