diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2018-05-22 16:26:26 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2018-05-29 12:24:26 +0200 |
commit | c8a4e30d9ac0a7d405c4d26e313af7464ee00929 (patch) | |
tree | 3da5459b4769e9e42310f15d918b4890aa0fd65e /drivers/mmc/core/mmc.c | |
parent | e1cb88ad4655dd7484e56c01a05a2986496f56a8 (diff) | |
download | linux-stable-c8a4e30d9ac0a7d405c4d26e313af7464ee00929.tar.gz linux-stable-c8a4e30d9ac0a7d405c4d26e313af7464ee00929.tar.bz2 linux-stable-c8a4e30d9ac0a7d405c4d26e313af7464ee00929.zip |
mmc: core: Move calls to ->prepare_hs400_tuning() closer to mmc code
Move the calls to ->prepare_hs400_tuning(), from mmc_retune() into
mmc_hs400_to_hs200(), as it better belongs there, rather than being generic
to all type of cards.
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/mmc/core/mmc.c')
-rw-r--r-- | drivers/mmc/core/mmc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index 57a8bd39cdde..4466f5de54d4 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -1282,6 +1282,10 @@ int mmc_hs400_to_hs200(struct mmc_card *card) mmc_set_bus_speed(card); + /* Prepare tuning for HS400 mode. */ + if (host->ops->prepare_hs400_tuning) + host->ops->prepare_hs400_tuning(host, &host->ios); + return 0; out_err: |