diff options
Diffstat (limited to 'arch/mips/pmc-sierra/yosemite/smp.c')
-rw-r--r-- | arch/mips/pmc-sierra/yosemite/smp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/pmc-sierra/yosemite/smp.c b/arch/mips/pmc-sierra/yosemite/smp.c index 326fe7a392e8..efc9e889b349 100644 --- a/arch/mips/pmc-sierra/yosemite/smp.c +++ b/arch/mips/pmc-sierra/yosemite/smp.c | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | #define LAUNCHSTACK_SIZE 256 | 9 | #define LAUNCHSTACK_SIZE 256 |
10 | 10 | ||
11 | static __cpuinitdata DEFINE_SPINLOCK(launch_lock); | 11 | static __cpuinitdata arch_spinlock_t launch_lock = __ARCH_SPIN_LOCK_UNLOCKED; |
12 | 12 | ||
13 | static unsigned long secondary_sp __cpuinitdata; | 13 | static unsigned long secondary_sp __cpuinitdata; |
14 | static unsigned long secondary_gp __cpuinitdata; | 14 | static unsigned long secondary_gp __cpuinitdata; |
@@ -20,7 +20,7 @@ static void __init prom_smp_bootstrap(void) | |||
20 | { | 20 | { |
21 | local_irq_disable(); | 21 | local_irq_disable(); |
22 | 22 | ||
23 | while (spin_is_locked(&launch_lock)); | 23 | while (arch_spin_is_locked(&launch_lock)); |
24 | 24 | ||
25 | __asm__ __volatile__( | 25 | __asm__ __volatile__( |
26 | " move $sp, %0 \n" | 26 | " move $sp, %0 \n" |
@@ -37,7 +37,7 @@ static void __init prom_smp_bootstrap(void) | |||
37 | */ | 37 | */ |
38 | void __init prom_grab_secondary(void) | 38 | void __init prom_grab_secondary(void) |
39 | { | 39 | { |
40 | spin_lock(&launch_lock); | 40 | arch_spin_lock(&launch_lock); |
41 | 41 | ||
42 | pmon_cpustart(1, &prom_smp_bootstrap, | 42 | pmon_cpustart(1, &prom_smp_bootstrap, |
43 | launchstack + LAUNCHSTACK_SIZE, 0); | 43 | launchstack + LAUNCHSTACK_SIZE, 0); |
@@ -138,7 +138,7 @@ static void __cpuinit yos_boot_secondary(int cpu, struct task_struct *idle) | |||
138 | secondary_sp = sp; | 138 | secondary_sp = sp; |
139 | secondary_gp = gp; | 139 | secondary_gp = gp; |
140 | 140 | ||
141 | spin_unlock(&launch_lock); | 141 | arch_spin_unlock(&launch_lock); |
142 | } | 142 | } |
143 | 143 | ||
144 | /* | 144 | /* |