diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-04-24 02:39:22 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-05-19 15:47:32 +0200 |
commit | 7b302e6731ac37fc688bc3085c11f5a886c90c08 (patch) | |
tree | a56bdee8f79bb3ec63f738b6a53650ff5ec05e81 /arch/x86/include/asm/fpu | |
parent | c0841e34fd9bbcef58c537151de8c83d2c910099 (diff) |
x86/fpu: Remove assembly guard from asm/fpu/api.h
asm/fpu/api.h does not contain any defines useful to assembly code,
and no assembly code includes asm/fpu/api.h. Remove the historic
#ifndef __ASSEMBLY__ leftover guard.
Reviewed-by: Borislav Petkov <bp@alien8.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include/asm/fpu')
-rw-r--r-- | arch/x86/include/asm/fpu/api.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/include/asm/fpu/api.h b/arch/x86/include/asm/fpu/api.h index 9d3a6f3cfc1b..f1eddcccba16 100644 --- a/arch/x86/include/asm/fpu/api.h +++ b/arch/x86/include/asm/fpu/api.h @@ -10,8 +10,6 @@ #ifndef _ASM_X86_FPU_API_H #define _ASM_X86_FPU_API_H -#ifndef __ASSEMBLY__ - #include <linux/sched.h> #include <linux/hardirq.h> @@ -102,6 +100,4 @@ static inline int user_has_fpu(void) extern void fpu__save(struct fpu *fpu); -#endif /* __ASSEMBLY__ */ - #endif /* _ASM_X86_FPU_API_H */ |