From: KAMEZAWA Hiroyuki This patch replaces for_each_cpu with for_each_possible_cpu. Signed-off-by: KAMEZAWA Hiroyuki Signed-off-by: Andrew Morton --- arch/sh/kernel/setup.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/sh/kernel/setup.c~for_each_possible_cpu-sh arch/sh/kernel/setup.c --- devel/arch/sh/kernel/setup.c~for_each_possible_cpu-sh 2006-03-15 20:03:20.000000000 -0800 +++ devel-akpm/arch/sh/kernel/setup.c 2006-03-15 20:03:20.000000000 -0800 @@ -404,7 +404,7 @@ static int __init topology_init(void) { int cpu_id; - for_each_cpu(cpu_id) + for_each_possible_cpu(cpu_id) register_cpu(&cpu[cpu_id], cpu_id, NULL); return 0; _