diff options
author | Robert Richter | 2010-07-20 20:50:48 +0200 |
---|---|---|
committer | H. Peter Anvin | 2010-07-21 01:21:38 +0200 |
commit | 7aa2b5f8ec60505160df1c25398e8286c8432689 (patch) | |
tree | 817120a6285d9a033facd1d93d9805b84a06c7b4 /arch/x86 | |
parent | x86, xsave: Use xsaveopt in context-switch path when supported (diff) | |
download | kernel-qcow2-linux-7aa2b5f8ec60505160df1c25398e8286c8432689.tar.gz kernel-qcow2-linux-7aa2b5f8ec60505160df1c25398e8286c8432689.tar.xz kernel-qcow2-linux-7aa2b5f8ec60505160df1c25398e8286c8432689.zip |
x86, xsave: Do not include asm/i387.h in asm/xsave.h
There are no dependencies to asm/i387.h. Instead, if including only
xsave.h the following error occurs:
.../arch/x86/include/asm/i387.h:110: error: ‘XSTATE_FP’ undeclared (first use in this function)
.../arch/x86/include/asm/i387.h:110: error: (Each undeclared identifier is reported only once
.../arch/x86/include/asm/i387.h:110: error: for each function it appears in.)
This patch fixes this.
Signed-off-by: Robert Richter <robert.richter@amd.com>
LKML-Reference: <1279651857-24639-2-git-send-email-robert.richter@amd.com>
Acked-by: Suresh Siddha <suresh.b.siddha@intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/xsave.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/include/asm/xsave.h b/arch/x86/include/asm/xsave.h index ec86c5fd6a6e..94d5f84d89f2 100644 --- a/arch/x86/include/asm/xsave.h +++ b/arch/x86/include/asm/xsave.h @@ -3,7 +3,6 @@ #include <linux/types.h> #include <asm/processor.h> -#include <asm/i387.h> #define XSTATE_FP 0x1 #define XSTATE_SSE 0x2 |