aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-07-17 03:49:35 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 14:01:07 -0400
commitcc040a8a0e8ba95fbb0ae1edcb9ec83623b422e3 (patch)
treee86350f03ca943c635456eeec90f7798bc13586f /arch
parent5072d5d58ef67bd7131d0be208ad1b6cd0631648 (diff)
alpha __init fixes
__init and __initdata stuff used from __devinit one Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/alpha/kernel/smp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c
index 80cfb758ee2b..b28731437c31 100644
--- a/arch/alpha/kernel/smp.c
+++ b/arch/alpha/kernel/smp.c
@@ -65,7 +65,7 @@ enum ipi_message_type {
65}; 65};
66 66
67/* Set to a secondary's cpuid when it comes online. */ 67/* Set to a secondary's cpuid when it comes online. */
68static int smp_secondary_alive __initdata = 0; 68static int smp_secondary_alive __devinitdata = 0;
69 69
70/* Which cpus ids came online. */ 70/* Which cpus ids came online. */
71cpumask_t cpu_online_map; 71cpumask_t cpu_online_map;
@@ -173,7 +173,7 @@ smp_callin(void)
173} 173}
174 174
175/* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */ 175/* Wait until hwrpb->txrdy is clear for cpu. Return -1 on timeout. */
176static int __init 176static int __devinit
177wait_for_txrdy (unsigned long cpumask) 177wait_for_txrdy (unsigned long cpumask)
178{ 178{
179 unsigned long timeout; 179 unsigned long timeout;
@@ -358,7 +358,7 @@ secondary_cpu_start(int cpuid, struct task_struct *idle)
358/* 358/*
359 * Bring one cpu online. 359 * Bring one cpu online.
360 */ 360 */
361static int __init 361static int __devinit
362smp_boot_one_cpu(int cpuid) 362smp_boot_one_cpu(int cpuid)
363{ 363{
364 struct task_struct *idle; 364 struct task_struct *idle;