Commit 8e2a43f5 authored by Russell King's avatar Russell King

ARM: rename mach_cpu_disable() to platform_cpu_disable()

Consistently name all SMP platform related functions.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 75070612
...@@ -82,7 +82,7 @@ struct secondary_data { ...@@ -82,7 +82,7 @@ struct secondary_data {
extern struct secondary_data secondary_data; extern struct secondary_data secondary_data;
extern int __cpu_disable(void); extern int __cpu_disable(void);
extern int mach_cpu_disable(unsigned int cpu); extern int platform_cpu_disable(unsigned int cpu);
extern void __cpu_die(unsigned int cpu); extern void __cpu_die(unsigned int cpu);
extern void cpu_die(void); extern void cpu_die(void);
......
...@@ -162,7 +162,7 @@ int __cpu_disable(void) ...@@ -162,7 +162,7 @@ int __cpu_disable(void)
struct task_struct *p; struct task_struct *p;
int ret; int ret;
ret = mach_cpu_disable(cpu); ret = platform_cpu_disable(cpu);
if (ret) if (ret)
return ret; return ret;
......
...@@ -131,7 +131,7 @@ void platform_cpu_die(unsigned int cpu) ...@@ -131,7 +131,7 @@ void platform_cpu_die(unsigned int cpu)
cpu_leave_lowpower(); cpu_leave_lowpower();
} }
int mach_cpu_disable(unsigned int cpu) int platform_cpu_disable(unsigned int cpu)
{ {
/* /*
* we don't allow CPU 0 to be shutdown (it is still too special * we don't allow CPU 0 to be shutdown (it is still too special
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment