diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-04-28 08:46:58 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-30 21:15:34 (GMT) |
commit | 3e8f7e35f3fd17eadef44e4679abb39a3806cf01 (patch) | |
tree | 8e8ea55506a28163d6b983ee0dd8bf43bcbf37c5 /include | |
parent | ed5e233284bc4aff965df7351da8426aa188c8f9 (diff) | |
download | linux-fsl-qoriq-3e8f7e35f3fd17eadef44e4679abb39a3806cf01.tar.xz |
x86 VISWS: build fix
the 'reboot_force' flag is a notion that non-PC subarchitectures do
not have.
also, unify the X86_BIOS_REBOOT option between 32-bit and 64-bit
and get rid of a few unnecessary Kconfig and Makefile complications
that way.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-x86/proto.h b/include/asm-x86/proto.h index 1e17bcc..6c8b41b 100644 --- a/include/asm-x86/proto.h +++ b/include/asm-x86/proto.h @@ -20,7 +20,11 @@ extern void syscall32_cpu_init(void); extern void check_efer(void); +#ifdef CONFIG_X86_BIOS_REBOOT extern int reboot_force; +#else +static const int reboot_force = 0; +#endif long do_arch_prctl(struct task_struct *task, int code, unsigned long addr); |