diff options
author | James Bottomley <jbottomley@parallels.com> | 2012-05-25 06:59:26 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-05-25 07:35:45 -0400 |
commit | 8275b91aad22144c4e2ea0c68b8d51090a81ba31 (patch) | |
tree | 6c748e9273a87bc25bb4507d7d9af1a1012ea593 /arch/parisc | |
parent | 2f649c1f6f0fef445ce79a19b79e5ce8fe9d7f19 (diff) |
[PARISC] Fix parisc compile failure after smp: Add task_struct argument to __cpu_up()
commit 8239c25f47d2b318156993b15f33900a86ea5e17 added an argument to our
__cpu_up() function, but didn't notice we have an extra definition for
this in asm/smp.h resulting in a compile failure.
Fix by removing the extraneous parisc definition of __cpu_up(). While
we're at it, remove the duplicated definition of smp_send_reschedule().
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/include/asm/smp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/parisc/include/asm/smp.h b/arch/parisc/include/asm/smp.h index e8f8037d872b..a5dc9066c6d8 100644 --- a/arch/parisc/include/asm/smp.h +++ b/arch/parisc/include/asm/smp.h | |||
@@ -25,7 +25,6 @@ typedef unsigned long address_t; | |||
25 | #define cpu_number_map(cpu) (cpu) | 25 | #define cpu_number_map(cpu) (cpu) |
26 | #define cpu_logical_map(cpu) (cpu) | 26 | #define cpu_logical_map(cpu) (cpu) |
27 | 27 | ||
28 | extern void smp_send_reschedule(int cpu); | ||
29 | extern void smp_send_all_nop(void); | 28 | extern void smp_send_all_nop(void); |
30 | 29 | ||
31 | extern void arch_send_call_function_single_ipi(int cpu); | 30 | extern void arch_send_call_function_single_ipi(int cpu); |
@@ -50,6 +49,5 @@ static inline void __cpu_die (unsigned int cpu) { | |||
50 | while(1) | 49 | while(1) |
51 | ; | 50 | ; |
52 | } | 51 | } |
53 | extern int __cpu_up (unsigned int cpu); | ||
54 | 52 | ||
55 | #endif /* __ASM_SMP_H */ | 53 | #endif /* __ASM_SMP_H */ |