diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mvebu/pmsu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mvebu/pmsu.c b/arch/arm/mach-mvebu/pmsu.c index e8fdb9ceedf0..9658b5a11e38 100644 --- a/arch/arm/mach-mvebu/pmsu.c +++ b/arch/arm/mach-mvebu/pmsu.c | |||
@@ -296,11 +296,11 @@ int armada_370_xp_pmsu_idle_enter(unsigned long deepidle) | |||
296 | /* Test the CR_C bit and set it if it was cleared */ | 296 | /* Test the CR_C bit and set it if it was cleared */ |
297 | asm volatile( | 297 | asm volatile( |
298 | "mrc p15, 0, r0, c1, c0, 0 \n\t" | 298 | "mrc p15, 0, r0, c1, c0, 0 \n\t" |
299 | "tst r0, #(1 << 2) \n\t" | 299 | "tst r0, %0 \n\t" |
300 | "orreq r0, r0, #(1 << 2) \n\t" | 300 | "orreq r0, r0, #(1 << 2) \n\t" |
301 | "mcreq p15, 0, r0, c1, c0, 0 \n\t" | 301 | "mcreq p15, 0, r0, c1, c0, 0 \n\t" |
302 | "isb " | 302 | "isb " |
303 | : : : "r0"); | 303 | : : "Ir" (CR_C) : "r0"); |
304 | 304 | ||
305 | pr_debug("Failed to suspend the system\n"); | 305 | pr_debug("Failed to suspend the system\n"); |
306 | 306 | ||