diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-08-08 16:30:11 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-08-08 16:30:11 +0900 |
commit | c66d3fcbf306af3c0c4b6f4e0d81467f89c67702 (patch) | |
tree | eadabd1b92288ff8a86b696ec2d0b8e52717ea9f | |
parent | 77c7ee51a062bb595c501ec098125a68999c20c3 (diff) | |
download | linux-3.10-c66d3fcbf306af3c0c4b6f4e0d81467f89c67702.tar.gz linux-3.10-c66d3fcbf306af3c0c4b6f4e0d81467f89c67702.tar.bz2 linux-3.10-c66d3fcbf306af3c0c4b6f4e0d81467f89c67702.zip |
sh: Fix up fallout from cpuidle changes.
Fixes up the pm_idle redefinition that was introduced with the earlier
cpuidle changes.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/idle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index 32114e0941a..db4ecd731a0 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c @@ -22,7 +22,7 @@ #include <linux/atomic.h> #include <asm/smp.h> -static void (*pm_idle)(void); +void (*pm_idle)(void); static int hlt_counter; |