diff options
Diffstat (limited to 'arch/arm/mach-zynq/platsmp.c')
-rw-r--r-- | arch/arm/mach-zynq/platsmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-zynq/platsmp.c b/arch/arm/mach-zynq/platsmp.c index 023f225493f2..689fbbc3d9c8 100644 --- a/arch/arm/mach-zynq/platsmp.c +++ b/arch/arm/mach-zynq/platsmp.c | |||
@@ -30,11 +30,11 @@ | |||
30 | /* | 30 | /* |
31 | * Store number of cores in the system | 31 | * Store number of cores in the system |
32 | * Because of scu_get_core_count() must be in __init section and can't | 32 | * Because of scu_get_core_count() must be in __init section and can't |
33 | * be called from zynq_cpun_start() because it is in __cpuinit section. | 33 | * be called from zynq_cpun_start() because it is not in __init section. |
34 | */ | 34 | */ |
35 | static int ncores; | 35 | static int ncores; |
36 | 36 | ||
37 | int __cpuinit zynq_cpun_start(u32 address, int cpu) | 37 | int zynq_cpun_start(u32 address, int cpu) |
38 | { | 38 | { |
39 | u32 trampoline_code_size = &zynq_secondary_trampoline_end - | 39 | u32 trampoline_code_size = &zynq_secondary_trampoline_end - |
40 | &zynq_secondary_trampoline; | 40 | &zynq_secondary_trampoline; |
@@ -92,7 +92,7 @@ int __cpuinit zynq_cpun_start(u32 address, int cpu) | |||
92 | } | 92 | } |
93 | EXPORT_SYMBOL(zynq_cpun_start); | 93 | EXPORT_SYMBOL(zynq_cpun_start); |
94 | 94 | ||
95 | static int __cpuinit zynq_boot_secondary(unsigned int cpu, | 95 | static int zynq_boot_secondary(unsigned int cpu, |
96 | struct task_struct *idle) | 96 | struct task_struct *idle) |
97 | { | 97 | { |
98 | return zynq_cpun_start(virt_to_phys(secondary_startup), cpu); | 98 | return zynq_cpun_start(virt_to_phys(secondary_startup), cpu); |