Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8a4e30d authored by Ulf Hansson's avatar Ulf Hansson
Browse files

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: default avatarUlf Hansson <ulf.hansson@linaro.org>
Reviewed-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent e1cb88ad
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -143,9 +143,6 @@ int mmc_retune(struct mmc_host *host)
			goto out;

		return_to_hs400 = true;

		if (host->ops->prepare_hs400_tuning)
			host->ops->prepare_hs400_tuning(host, &host->ios);
	}

	err = mmc_execute_tuning(host->card);
+4 −0
Original line number Diff line number Diff line
@@ -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: