diff options
-rw-r--r-- | arch/powerpc/kernel/smp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/smp.c b/arch/powerpc/kernel/smp.c index 0b47de07302d..96f107cc0160 100644 --- a/arch/powerpc/kernel/smp.c +++ b/arch/powerpc/kernel/smp.c | |||
@@ -412,9 +412,8 @@ int __cpuinit __cpu_up(unsigned int cpu) | |||
412 | * CPUs can take much longer to come up in the | 412 | * CPUs can take much longer to come up in the |
413 | * hotplug case. Wait five seconds. | 413 | * hotplug case. Wait five seconds. |
414 | */ | 414 | */ |
415 | for (c = 25; c && !cpu_callin_map[cpu]; c--) { | 415 | for (c = 5000; c && !cpu_callin_map[cpu]; c--) |
416 | msleep(200); | 416 | msleep(1); |
417 | } | ||
418 | #endif | 417 | #endif |
419 | 418 | ||
420 | if (!cpu_callin_map[cpu]) { | 419 | if (!cpu_callin_map[cpu]) { |