diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-20 15:59:54 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-20 15:59:54 -0400 |
commit | 9fafbd806198eb690c9a9f9fe35a879db93a1b8d (patch) | |
tree | a555f39102d51151d7f8461a4f575468cd52f33c /arch/sparc/kernel/smp_32.c | |
parent | d81f087f1f1c1aacdb4f17224a554237285ddd11 (diff) | |
parent | 21dccddf45aae2d9f973696ce06115da0d1012b6 (diff) |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
Diffstat (limited to 'arch/sparc/kernel/smp_32.c')
-rw-r--r-- | arch/sparc/kernel/smp_32.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/sparc/kernel/smp_32.c b/arch/sparc/kernel/smp_32.c index 139c312a41f7..41102c5a6702 100644 --- a/arch/sparc/kernel/smp_32.c +++ b/arch/sparc/kernel/smp_32.c | |||
@@ -51,6 +51,7 @@ cpumask_t smp_commenced_mask = CPU_MASK_NONE; | |||
51 | void __cpuinit smp_store_cpu_info(int id) | 51 | void __cpuinit smp_store_cpu_info(int id) |
52 | { | 52 | { |
53 | int cpu_node; | 53 | int cpu_node; |
54 | int mid; | ||
54 | 55 | ||
55 | cpu_data(id).udelay_val = loops_per_jiffy; | 56 | cpu_data(id).udelay_val = loops_per_jiffy; |
56 | 57 | ||
@@ -58,10 +59,13 @@ void __cpuinit smp_store_cpu_info(int id) | |||
58 | cpu_data(id).clock_tick = prom_getintdefault(cpu_node, | 59 | cpu_data(id).clock_tick = prom_getintdefault(cpu_node, |
59 | "clock-frequency", 0); | 60 | "clock-frequency", 0); |
60 | cpu_data(id).prom_node = cpu_node; | 61 | cpu_data(id).prom_node = cpu_node; |
61 | cpu_data(id).mid = cpu_get_hwmid(cpu_node); | 62 | mid = cpu_get_hwmid(cpu_node); |
62 | 63 | ||
63 | if (cpu_data(id).mid < 0) | 64 | if (mid < 0) { |
64 | panic("No MID found for CPU%d at node 0x%08d", id, cpu_node); | 65 | printk(KERN_NOTICE "No MID found for CPU%d at node 0x%08d", id, cpu_node); |
66 | mid = 0; | ||
67 | } | ||
68 | cpu_data(id).mid = mid; | ||
65 | } | 69 | } |
66 | 70 | ||
67 | void __init smp_cpus_done(unsigned int max_cpus) | 71 | void __init smp_cpus_done(unsigned int max_cpus) |