]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: EXYNOS: Fix S5P_WAKEUP_STAT call for cpuidle
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Thu, 8 May 2014 21:43:27 +0000 (06:43 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Sun, 25 May 2014 20:21:07 +0000 (05:21 +0900)
This function should be called only when the powerdown sequence fails.

Even if the current code does not hurt, by moving this line, we have
the same code than the one in pm.c.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Reviewed-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-exynos/cpuidle.c

index 144ff1e7bbf81aa85284910a6ea5c0b37a778b7a..87f9f129883d689ccac53f433002a0c6c0700b35 100644 (file)
@@ -116,11 +116,10 @@ static int exynos_enter_core0_aftr(struct cpuidle_device *dev,
        if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
                tmp |= S5P_CENTRAL_LOWPWR_CFG;
                __raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
+               /* Clear wakeup state register */
+               __raw_writel(0x0, S5P_WAKEUP_STAT);
        }
 
-       /* Clear wakeup state register */
-       __raw_writel(0x0, S5P_WAKEUP_STAT);
-
        return index;
 }