mmc: sdhci-xenon: Fix timeout checks
authorAdrian Hunter <adrian.hunter@intel.com>
Mon, 10 Dec 2018 08:56:26 +0000 (10:56 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 17 Dec 2018 07:26:24 +0000 (08:26 +0100)
Always check the wait condition before returning timeout.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Reviewed-by: Zhoujie Wu <zjwu@marvell.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-xenon-phy.c
drivers/mmc/host/sdhci-xenon.c

index 5956e90..5b5eb53 100644 (file)
@@ -357,9 +357,13 @@ static int xenon_emmc_phy_enable_dll(struct sdhci_host *host)
 
        /* Wait max 32 ms */
        timeout = ktime_add_ms(ktime_get(), 32);
-       while (!(sdhci_readw(host, XENON_SLOT_EXT_PRESENT_STATE) &
-               XENON_DLL_LOCK_STATE)) {
-               if (ktime_after(ktime_get(), timeout)) {
+       while (1) {
+               bool timedout = ktime_after(ktime_get(), timeout);
+
+               if (sdhci_readw(host, XENON_SLOT_EXT_PRESENT_STATE) &
+                   XENON_DLL_LOCK_STATE)
+                       break;
+               if (timedout) {
                        dev_err(mmc_dev(host->mmc), "Wait for DLL Lock time-out\n");
                        return -ETIMEDOUT;
                }
index 4d0791f..a0b5089 100644 (file)
@@ -34,9 +34,13 @@ static int xenon_enable_internal_clk(struct sdhci_host *host)
        sdhci_writel(host, reg, SDHCI_CLOCK_CONTROL);
        /* Wait max 20 ms */
        timeout = ktime_add_ms(ktime_get(), 20);
-       while (!((reg = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
-                       & SDHCI_CLOCK_INT_STABLE)) {
-               if (ktime_after(ktime_get(), timeout)) {
+       while (1) {
+               bool timedout = ktime_after(ktime_get(), timeout);
+
+               reg = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
+               if (reg & SDHCI_CLOCK_INT_STABLE)
+                       break;
+               if (timedout) {
                        dev_err(mmc_dev(host->mmc), "Internal clock never stabilised.\n");
                        return -ETIMEDOUT;
                }