x86/voyager: fix compile breakage casued by x86: move prefill_possible_map calling early

Impact: fix build failure on x86/Voyager

Before:

| commit 329513a35d1a2b6b28d54f5c2c0dde4face8200b
| Author: Yinghai Lu <yhlu.kernel@gmail.com>
| Date: Wed Jul 2 18:54:40 2008 -0700
|
| x86: move prefill_possible_map calling early

prefill_possible_mask() was hidden under CONFIG_HOTPLUG_CPU rendering
it invisitble to voyager. Since this commit it's exposed, but not
provided by the voyager subarch, so add a dummy stub to fix the link
breakage.

Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by James Bottomley and committed by Ingo Molnar ee477524 017d9d20

+6
+6
arch/x86/mach-voyager/voyager_smp.c
··· 345 345 } 346 346 } 347 347 348 + void prefill_possible_map(void) 349 + { 350 + /* This is empty on voyager because we need a much 351 + * earlier detection which is done in find_smp_config */ 352 + } 353 + 348 354 /* Set up all the basic stuff: read the SMP config and make all the 349 355 * SMP information reflect only the boot cpu. All others will be 350 356 * brought on-line later. */