Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 45474
b: refs/heads/master
c: b282b6f
h: refs/heads/master
v: v3
  • Loading branch information
Gautham R Shenoy authored and Linus Torvalds committed Jan 12, 2007
1 parent 679cb6d commit 391fef4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0d103e90f63c4b78f2101f8c0bd303fa049ce9a7
refs/heads/master: b282b6f8a8d1cf3e132ce3769d7d1cac81d9dd2d
2 changes: 1 addition & 1 deletion trunk/arch/cris/arch-v32/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ int setup_profiling_timer(unsigned int multiplier)
*/
unsigned long cache_decay_ticks = 1;

int __devinit __cpu_up(unsigned int cpu)
int __cpuinit __cpu_up(unsigned int cpu)
{
smp_boot_one_cpu(cpu);
return cpu_online(cpu) ? 0 : -ENOSYS;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m32r/kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ static void __init do_boot_cpu(int phys_id)
}
}

int __devinit __cpu_up(unsigned int cpu_id)
int __cpuinit __cpu_up(unsigned int cpu_id)
{
int timeout;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ void __devinit smp_prepare_boot_cpu(void)
* and keep control until "cpu_online(cpu)" is set. Note: cpu is
* physical, not logical.
*/
int __devinit __cpu_up(unsigned int cpu)
int __cpuinit __cpu_up(unsigned int cpu)
{
struct task_struct *idle;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/parisc/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ void smp_cpus_done(unsigned int cpu_max)
}


int __devinit __cpu_up(unsigned int cpu)
int __cpuinit __cpu_up(unsigned int cpu)
{
if (cpu != 0 && cpu < parisc_max_cpus)
smp_boot_one_cpu(cpu);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/powerpc/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ static int __devinit cpu_enable(unsigned int cpu)
return -ENOSYS;
}

int __devinit __cpu_up(unsigned int cpu)
int __cpuinit __cpu_up(unsigned int cpu)
{
int c;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sparc64/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ void __devinit smp_prepare_boot_cpu(void)
{
}

int __devinit __cpu_up(unsigned int cpu)
int __cpuinit __cpu_up(unsigned int cpu)
{
int ret = smp_boot_one_cpu(cpu);

Expand Down
4 changes: 2 additions & 2 deletions trunk/kernel/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ int cpu_down(unsigned int cpu)
#endif /*CONFIG_HOTPLUG_CPU*/

/* Requires cpu_add_remove_lock to be held */
static int __devinit _cpu_up(unsigned int cpu)
static int __cpuinit _cpu_up(unsigned int cpu)
{
int ret;
void *hcpu = (void *)(long)cpu;
Expand Down Expand Up @@ -239,7 +239,7 @@ static int __devinit _cpu_up(unsigned int cpu)
return ret;
}

int __devinit cpu_up(unsigned int cpu)
int __cpuinit cpu_up(unsigned int cpu)
{
int err = 0;

Expand Down

0 comments on commit 391fef4

Please sign in to comment.