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

Commit 4af8529d authored by Sarthak Garg's avatar Sarthak Garg Committed by Gerrit - the friendly Code Review server
Browse files

mmc: sdhci-msm: Update pr_err condition in DLL init path



eMMC device operating at 1.8 V can be run up to 100 MHz without SDCDC
(DLL) and with DLL above 100 MHz.

Change the existing pr_err condition to less than 100MHz.

Change-Id: Ia6575ddfd0e4dc57723226e3dff24ad485a1a2ea
Signed-off-by: default avatarSarthak Garg <sartgarg@codeaurora.org>
parent a2419103
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -939,7 +939,7 @@ static int msm_init_cm_dll(struct sdhci_host *host,

			mclk_freq = ROUND(dll_clock * cycle_cnt, TCXO_FREQ);

			if (dll_clock < 192000000)
			if (dll_clock < 100000000)
				pr_err("%s: %s: Non standard clk freq =%u\n",
				mmc_hostname(mmc), __func__, dll_clock);