diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-07-23 12:14:00 (GMT) |
---|---|---|
committer | Jaswinder Singh <jaswinder@infradead.org> | 2008-07-23 12:14:00 (GMT) |
commit | 71e3b818431957371c7f69fa1c576d4a403c1478 (patch) | |
tree | 375a306279e066a761eba4d8b15b7b1a7d71fdb5 | |
parent | 01eb7858c017b1c63b962f8c2ad37133383ca560 (diff) | |
download | linux-71e3b818431957371c7f69fa1c576d4a403c1478.tar.xz |
x86: mach-default/setup.c declare no_broadcast before they get used
included mach_ipi.h for no_broadcast declaration
fixed minor spacing for no_broadcast
Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
-rw-r--r-- | arch/x86/mach-default/setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/mach-default/setup.c b/arch/x86/mach-default/setup.c index 3d31783..3f2cf11 100644 --- a/arch/x86/mach-default/setup.c +++ b/arch/x86/mach-default/setup.c @@ -10,13 +10,15 @@ #include <asm/e820.h> #include <asm/setup.h> +#include <mach_ipi.h> + #ifdef CONFIG_HOTPLUG_CPU #define DEFAULT_SEND_IPI (1) #else #define DEFAULT_SEND_IPI (0) #endif -int no_broadcast=DEFAULT_SEND_IPI; +int no_broadcast = DEFAULT_SEND_IPI; /** * pre_intr_init_hook - initialisation prior to setting up interrupt vectors |