Commit d96dc68e authored by Dan Carpenter's avatar Dan Carpenter Committed by Ulf Hansson

mmc: tegra: Fix a warning message

The WARN_ON() macro takes a condition, not a warning message.  I've
changed this to use WARN(1, "msg...

Fixes: ea8fc595 ("mmc: tegra: update hw tuning process")
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 61009f82
...@@ -865,7 +865,7 @@ static void tegra_sdhci_tap_correction(struct sdhci_host *host, u8 thd_up, ...@@ -865,7 +865,7 @@ static void tegra_sdhci_tap_correction(struct sdhci_host *host, u8 thd_up,
} }
if (!first_fail) { if (!first_fail) {
WARN_ON("no edge detected, continue with hw tuned delay.\n"); WARN(1, "no edge detected, continue with hw tuned delay.\n");
} else if (first_pass) { } else if (first_pass) {
/* set tap location at fixed tap relative to the first edge */ /* set tap location at fixed tap relative to the first edge */
edge1 = first_fail_tap + (first_pass_tap - first_fail_tap) / 2; edge1 = first_fail_tap + (first_pass_tap - first_fail_tap) / 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment