From: Ingo Molnar Date: Fri, 24 Apr 2015 00:39:22 +0000 (+0200) Subject: x86/fpu: Remove assembly guard from asm/fpu/api.h X-Git-Tag: v4.2-rc1~170^2~176 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=7b302e6731ac37fc688bc3085c11f5a886c90c08;p=linux.git 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 Cc: Andy Lutomirski Cc: Dave Hansen Cc: Fenghua Yu Cc: H. Peter Anvin Cc: Linus Torvalds Cc: Oleg Nesterov Cc: Peter Zijlstra Cc: Thomas Gleixner Signed-off-by: Ingo Molnar --- 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 #include @@ -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 */