diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2023-10-10 17:52:20 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2023-10-11 10:15:47 +0200 |
commit | d6f274b7c8ac52abc81e898b62c3ff63fbeb11b8 (patch) | |
tree | 06310370c292744e5d02f90943d44a02679415f6 /arch/x86/mm | |
parent | 6e74b125155dc8c747d76fb45d8e6d20e9e4fb4d (diff) |
x86/sev: Drop unneeded #include
Commit:
20f07a044a76 ("x86/sev: Move common memory encryption code to mem_encrypt.c")
... forgot to remove the include of virtio_config.h from mem_encrypt_amd.c
when it moved the related code to mem_encrypt.c (from where this include
subsequently got removed by a later commit).
Remove it now.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Tom Lendacky <thomas.lendacky@amd.com>
Link: https://lore.kernel.org/r/20231010145220.3960055-3-alexander.shishkin@linux.intel.com
Diffstat (limited to 'arch/x86/mm')
-rw-r--r-- | arch/x86/mm/mem_encrypt_amd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/mm/mem_encrypt_amd.c b/arch/x86/mm/mem_encrypt_amd.c index 62dde75d41fa..a68f2dda0948 100644 --- a/arch/x86/mm/mem_encrypt_amd.c +++ b/arch/x86/mm/mem_encrypt_amd.c @@ -19,7 +19,6 @@ #include <linux/kernel.h> #include <linux/bitops.h> #include <linux/dma-mapping.h> -#include <linux/virtio_config.h> #include <linux/cc_platform.h> #include <asm/tlbflush.h> |