diff options
author | Jaehoon Chung | 2021-05-31 08:31:49 +0900 |
---|---|---|
committer | Peng Fan | 2021-06-22 12:03:11 +0800 |
commit | 2da2335a18a1b7123da08c325fdcd7960c0f0642 (patch) | |
tree | 0d14b64da962d4cb546017ab632a83255958e580 /include/mmc.h | |
parent | 5c2beda545dde4d27c0e893e97c74740ff27ff2f (diff) |
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 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index 8600881705f..7f8ba2b017e 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -795,6 +795,7 @@ int mmc_initialize(struct bd_info *bis); int mmc_init_device(int num); int mmc_init(struct mmc *mmc); int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error); +int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data); #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |