x86/fpu: Move fpu__save() to fpu/internals.h
authorIngo Molnar <mingo@kernel.org>
Sun, 26 Apr 2015 14:43:43 +0000 (16:43 +0200)
committerIngo Molnar <mingo@kernel.org>
Tue, 19 May 2015 13:47:48 +0000 (15:47 +0200)
It's an internal method, not a driver API, so move it from fpu/api.h
to fpu/internal.h.

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>
arch/x86/include/asm/fpu/api.h
arch/x86/include/asm/fpu/internal.h

index 4ca745c0d92ec064f4d144445050e048f340b9cf..eeac3766d8e5842e78d1c1211cbf11357c488f6c 100644 (file)
@@ -99,6 +99,4 @@ static inline int user_has_fpu(void)
        return current->thread.fpu.fpregs_active;
 }
 
-extern void fpu__save(struct fpu *fpu);
-
 #endif /* _ASM_X86_FPU_API_H */
index 5a1fa5bc2c273326323627d35f373e1d183a255e..0c8c812d23b4edac546456ca414b9be40080f760 100644 (file)
@@ -290,6 +290,8 @@ static inline int fpu_save_init(struct fpu *fpu)
        return 1;
 }
 
+extern void fpu__save(struct fpu *fpu);
+
 static inline int fpu_restore_checking(struct fpu *fpu)
 {
        if (use_xsave())