diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-10-15 03:16:33 +0200 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-10-20 15:27:28 +0200 |
commit | 90489f1dee8b703a3301857917c0aba0b22b5d83 (patch) | |
tree | b542a1d39f349f53a4436c165c8e104ae426bc2d /arch/x86/math-emu | |
parent | d9d005f32aac7362a1998f4b7fdf8874e91546bd (diff) | |
download | linux-90489f1dee8b703a3301857917c0aba0b22b5d83.tar.bz2 |
x86/fpu: Move fpstate functions to api.h
Move function declarations which need to be globally available to api.h
where they belong.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211015011539.792363754@linutronix.de
Diffstat (limited to 'arch/x86/math-emu')
-rw-r--r-- | arch/x86/math-emu/fpu_entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/math-emu/fpu_entry.c b/arch/x86/math-emu/fpu_entry.c index 8679a9d6c47f..50195e249753 100644 --- a/arch/x86/math-emu/fpu_entry.c +++ b/arch/x86/math-emu/fpu_entry.c @@ -31,7 +31,7 @@ #include <linux/uaccess.h> #include <asm/traps.h> #include <asm/user.h> -#include <asm/fpu/internal.h> +#include <asm/fpu/api.h> #include "fpu_system.h" #include "fpu_emu.h" |