[tip: x86/cleanups] x86/cpu: Fix a -Wmissing-prototypes warning for init_ia32_feat_ctl()

From: tip-bot2 for Benjamin Thiel
Date: Mon Mar 23 2020 - 07:09:06 EST


The following commit has been merged into the x86/cleanups branch of tip:

Commit-ID: 0e79ad863df43b01090ae18c97de5c3787f069c6
Gitweb: https://git.kernel.org/tip/0e79ad863df43b01090ae18c97de5c3787f069c6
Author: Benjamin Thiel <b.thiel@xxxxxxxxx>
AuthorDate: Mon, 23 Mar 2020 11:59:34 +01:00
Committer: Borislav Petkov <bp@xxxxxxx>
CommitterDate: Mon, 23 Mar 2020 12:01:59 +01:00

x86/cpu: Fix a -Wmissing-prototypes warning for init_ia32_feat_ctl()

Add a missing include in order to fix -Wmissing-prototypes warning:

arch/x86/kernel/cpu/feat_ctl.c:95:6: warning: no previous prototype for âinit_ia32_feat_ctlâ [-Wmissing-prototypes]
95 | void init_ia32_feat_ctl(struct cpuinfo_x86 *c)

Signed-off-by: Benjamin Thiel <b.thiel@xxxxxxxxx>
Signed-off-by: Borislav Petkov <bp@xxxxxxx>
Link: https://lkml.kernel.org/r/20200323105934.26597-1-b.thiel@xxxxxxxxx
---
arch/x86/kernel/cpu/feat_ctl.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/x86/kernel/cpu/feat_ctl.c b/arch/x86/kernel/cpu/feat_ctl.c
index 0268185..29a3bed 100644
--- a/arch/x86/kernel/cpu/feat_ctl.c
+++ b/arch/x86/kernel/cpu/feat_ctl.c
@@ -5,6 +5,7 @@
#include <asm/msr-index.h>
#include <asm/processor.h>
#include <asm/vmx.h>
+#include "cpu.h"

#undef pr_fmt
#define pr_fmt(fmt) "x86/cpu: " fmt