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

Commit 6a98f1e8 authored by Adrian Hunter's avatar Adrian Hunter Committed by Ulf Hansson
Browse files

mmc: Fix incorrect warning when setting 0 Hz via debugfs



It is possible to turn off the card clock by setting
the frequency to zero via debugfs e.g.

	echo 0 > /sys/kernel/debug/mmc0/clock

However that produces an incorrect warning that is
designed to warn if the frequency is below the minimum
operating frequency.  So correct the warning.

Signed-off-by: default avatarAdrian Hunter <adrian.hunter@intel.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 6800754c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -995,7 +995,7 @@ void mmc_set_chip_select(struct mmc_host *host, int mode)
 */
 */
static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
{
{
	WARN_ON(hz < host->f_min);
	WARN_ON(hz && hz < host->f_min);


	if (hz > host->f_max)
	if (hz > host->f_max)
		hz = host->f_max;
		hz = host->f_max;