aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel
diff options
context:
space:
mode:
authorJacek Luczak <difrost.kernel@gmail.com>2008-04-09 16:53:50 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-19 13:19:54 -0400
commit120d5bf128906c790df810e159d2e1239d08fef1 (patch)
tree5e596d15f6bc806fbad7b24807c4ca917525a6c2 /arch/x86/kernel
parentcf9b111c170733dde39139e8989b676ec8b81573 (diff)
x86: remove vm86.h inclusion from process_32.c
I've made a small investigation about vm86.h inclusion rules and it looks like everything is more or less ok. Files that rely on asm/vm86.h symbols are: - kprobes.c - process_32.c - signal_32.c - traps_32.c - vm86_32.c File process_32.c includes vm86.h explicitly. We can remove that include and it won't break anything. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r--arch/x86/kernel/process_32.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c
index 3903a8f2eb97..91e147b486dd 100644
--- a/arch/x86/kernel/process_32.c
+++ b/arch/x86/kernel/process_32.c
@@ -45,7 +45,6 @@
45#include <asm/processor.h> 45#include <asm/processor.h>
46#include <asm/i387.h> 46#include <asm/i387.h>
47#include <asm/desc.h> 47#include <asm/desc.h>
48#include <asm/vm86.h>
49#ifdef CONFIG_MATH_EMULATION 48#ifdef CONFIG_MATH_EMULATION
50#include <asm/math_emu.h> 49#include <asm/math_emu.h>
51#endif 50#endif