diff options
author | ZhiHu <huzhi001@208suo.com> | 2023-07-24 01:12:47 +0200 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2023-07-24 01:12:47 +0200 |
commit | 060f2b979c4e0e894c381c76a4dcad24376feddd (patch) | |
tree | 6b9b141ec869447c9aec89c03fb76aad9f042c6b | |
parent | x86/hyperv: Disable IBT when hypercall page lacks ENDBR instruction (diff) | |
download | linux-060f2b979c4e0e894c381c76a4dcad24376feddd.tar.xz linux-060f2b979c4e0e894c381c76a4dcad24376feddd.zip |
x86/hyperv: fix a warning in mshyperv.h
The following checkpatch warning is removed:
WARNING: Use #include <linux/io.h> instead of <asm/io.h>
Signed-off-by: ZhiHu <huzhi001@208suo.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>
-rw-r--r-- | arch/x86/include/asm/mshyperv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/mshyperv.h b/arch/x86/include/asm/mshyperv.h index 49bb4f2bd300..cd17e706f9ca 100644 --- a/arch/x86/include/asm/mshyperv.h +++ b/arch/x86/include/asm/mshyperv.h @@ -5,7 +5,7 @@ #include <linux/types.h> #include <linux/nmi.h> #include <linux/msi.h> -#include <asm/io.h> +#include <linux/io.h> #include <asm/hyperv-tlfs.h> #include <asm/nospec-branch.h> #include <asm/paravirt.h> |