Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57207
b: refs/heads/master
c: ea1f4ee
h: refs/heads/master
i:
  57205: 6aa909c
  57203: 8329d75
  57199: d6c5cbb
v: v3
  • Loading branch information
Heiko Carstens authored and Martin Schwidefsky committed May 31, 2007
1 parent a6d40a6 commit e8d6446
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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: d330f93595a4eb100118c8af50012d6b0dc559e3
refs/heads/master: ea1f4eece943968940a399c72c1ca675d51e466e
4 changes: 2 additions & 2 deletions trunk/arch/s390/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static struct resource data_resource = {
/*
* cpu_init() initializes state that is per-CPU.
*/
void __devinit cpu_init (void)
void __cpuinit cpu_init(void)
{
int addr = hard_smp_processor_id();

Expand Down Expand Up @@ -915,7 +915,7 @@ setup_arch(char **cmdline_p)
setup_zfcpdump(console_devno);
}

void print_cpu_info(struct cpuinfo_S390 *cpuinfo)
void __cpuinit print_cpu_info(struct cpuinfo_S390 *cpuinfo)
{
printk("cpu %d "
#ifdef CONFIG_SMP
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static unsigned int __init smp_count_cpus(void)
/*
* Activate a secondary processor.
*/
int __devinit start_secondary(void *cpuvoid)
int __cpuinit start_secondary(void *cpuvoid)
{
/* Setup the cpu */
cpu_init();
Expand Down Expand Up @@ -741,7 +741,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
smp_create_idle(cpu);
}

void __devinit smp_prepare_boot_cpu(void)
void __init smp_prepare_boot_cpu(void)
{
BUG_ON(smp_processor_id() != 0);

Expand All @@ -750,7 +750,7 @@ void __devinit smp_prepare_boot_cpu(void)
current_set[0] = current;
}

void smp_cpus_done(unsigned int max_cpus)
void __init smp_cpus_done(unsigned int max_cpus)
{
cpu_present_map = cpu_possible_map;
}
Expand Down

0 comments on commit e8d6446

Please sign in to comment.