mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
ba3e127ec1
vm86.h was being implicitly included in alot of places via processor.h, which in turn got it from math_emu.h. Break that chain and explicitly include vm86.h in all files that need it. Also remove unused vm86 field from math_emu_info. Signed-off-by: Brian Gerst <brgerst@gmail.com> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Borislav Petkov <bp@alien8.de> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/1438148483-11932-7-git-send-email-brgerst@gmail.com [ Fixed build failure. ] Signed-off-by: Ingo Molnar <mingo@kernel.org>
15 lines
356 B
C
15 lines
356 B
C
#ifndef _ASM_X86_MATH_EMU_H
|
|
#define _ASM_X86_MATH_EMU_H
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
/* This structure matches the layout of the data saved to the stack
|
|
following a device-not-present interrupt, part of it saved
|
|
automatically by the 80386/80486.
|
|
*/
|
|
struct math_emu_info {
|
|
long ___orig_eip;
|
|
struct pt_regs *regs;
|
|
};
|
|
#endif /* _ASM_X86_MATH_EMU_H */
|