diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-08-10 09:47:51 -0400 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-09-29 12:01:19 -0400 |
commit | 7ee20ff0072154d326c86223fbb88d23aa152b91 (patch) | |
tree | d204c3cb26c92c3f678851700dbdb3c234c7eb7a /arch/arm/mach-mvebu | |
parent | 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff) |
ARM: mvebu: Use a CR_C constant instead of a hard-coded one
Fix the armada_370_xp_pmsu_idle_enter() function to use a CR_C
constant instead of a hard-coded constant in the assembly part.
This clean-up was suggested by Russell King.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-mvebu')
-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 | ||