diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-10-15 03:16:36 +0200 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2021-10-20 15:27:29 +0200 |
commit | ff0c37e191f2629bf2776dbd95db5d06f704ab93 (patch) | |
tree | cbbf1d96a00f16eacf04de8d47270b19b06cc109 /arch/x86/kernel/sev.c | |
parent | x86/fpu: Remove internal.h dependency from fpu/signal.h (diff) | |
download | linux-ff0c37e191f2629bf2776dbd95db5d06f704ab93.tar.xz linux-ff0c37e191f2629bf2776dbd95db5d06f704ab93.zip |
x86/sev: Include fpu/xcr.h
Include the header which only provides the XCR accessors. That's all what
is needed here.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20211015011539.896573039@linutronix.de
Diffstat (limited to '')
-rw-r--r-- | arch/x86/kernel/sev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/sev.c b/arch/x86/kernel/sev.c index a6895e440bc3..50c773c3384c 100644 --- a/arch/x86/kernel/sev.c +++ b/arch/x86/kernel/sev.c @@ -23,7 +23,7 @@ #include <asm/stacktrace.h> #include <asm/sev.h> #include <asm/insn-eval.h> -#include <asm/fpu/internal.h> +#include <asm/fpu/xcr.h> #include <asm/processor.h> #include <asm/realmode.h> #include <asm/traps.h> |