diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-11-08 05:44:46 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-11-08 05:44:46 -0500 |
commit | 5d43045bcd296f9f269ab266bf26cd667d8d560c (patch) | |
tree | 09ad7a30e275c3bce3e02b3ca13c2b72c22a8600 /arch/arm/kernel | |
parent | dbebb4cbe02dc811e21bd3bc40a252490e46b949 (diff) |
[ARM SMP] Fix some sparse warnings in SMP code
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/smp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index edb5a406922f..f65750a3d28b 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c | |||
@@ -142,7 +142,7 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
142 | ret = -EIO; | 142 | ret = -EIO; |
143 | } | 143 | } |
144 | 144 | ||
145 | secondary_data.stack = 0; | 145 | secondary_data.stack = NULL; |
146 | secondary_data.pgdir = 0; | 146 | secondary_data.pgdir = 0; |
147 | 147 | ||
148 | *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0); | 148 | *pmd_offset(pgd, PHYS_OFFSET) = __pmd(0); |
@@ -359,8 +359,8 @@ static void send_ipi_message(cpumask_t callmap, enum ipi_msg_type msg) | |||
359 | * You must not call this function with disabled interrupts, from a | 359 | * You must not call this function with disabled interrupts, from a |
360 | * hardware interrupt handler, nor from a bottom half handler. | 360 | * hardware interrupt handler, nor from a bottom half handler. |
361 | */ | 361 | */ |
362 | int smp_call_function_on_cpu(void (*func)(void *info), void *info, int retry, | 362 | static int smp_call_function_on_cpu(void (*func)(void *info), void *info, |
363 | int wait, cpumask_t callmap) | 363 | int retry, int wait, cpumask_t callmap) |
364 | { | 364 | { |
365 | struct smp_call_struct data; | 365 | struct smp_call_struct data; |
366 | unsigned long timeout; | 366 | unsigned long timeout; |