diff options
author | Len Brown <len.brown@intel.com> | 2013-02-10 05:27:26 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2013-02-18 05:36:56 +0100 |
commit | d472ba840d622e48f5c94369263ef3af18ab64f8 (patch) | |
tree | ed4984bb9f6d39a10a351ae8f07f4f7a795d9623 /arch/sparc/kernel/apc.c | |
parent | sh idle: rename global pm_idle to static sh_idle (diff) | |
download | linux-d472ba840d622e48f5c94369263ef3af18ab64f8.tar.xz linux-d472ba840d622e48f5c94369263ef3af18ab64f8.zip |
sparc idle: rename pm_idle to sparc_idle
(pm_idle)() is being removed from linux/pm.h
because Linux does not have such a cross-architecture concept.
sparc uses an idle function pointer in its architecture
specific code. So we re-name sparc use of pm_idle to sparc_idle.
Signed-off-by: Len Brown <len.brown@intel.com>
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/sparc/kernel/apc.c')
-rw-r--r-- | arch/sparc/kernel/apc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sparc/kernel/apc.c b/arch/sparc/kernel/apc.c index 348fa1aeabce..eefda32b595e 100644 --- a/arch/sparc/kernel/apc.c +++ b/arch/sparc/kernel/apc.c @@ -20,6 +20,7 @@ #include <asm/uaccess.h> #include <asm/auxio.h> #include <asm/apc.h> +#include <asm/processor.h> /* Debugging * @@ -158,7 +159,7 @@ static int apc_probe(struct platform_device *op) /* Assign power management IDLE handler */ if (!apc_no_idle) - pm_idle = apc_swift_idle; + sparc_idle = apc_swift_idle; printk(KERN_INFO "%s: power management initialized%s\n", APC_DEVNAME, apc_no_idle ? " (CPU idle disabled)" : ""); |