diff mbox series

[v1,3/8] x86/quirks: Add missed include to satisfy static checker

Message ID 20200117175626.56358-3-andriy.shevchenko@linux.intel.com
State Not Applicable
Headers show
Series [v1,1/8] rtc: cmos: Use shared IRQ only for Microsoft Surface 3 | expand

Commit Message

Andy Shevchenko Jan. 17, 2020, 5:56 p.m. UTC
Static checker is not happy with

.../kernel/quirks.c:666:6: warning: symbol 'x86_apple_machine' was not declared. Should it be static?

This is due to missed inclusion. Add it to satisfy the static checker.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 arch/x86/kernel/quirks.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/arch/x86/kernel/quirks.c b/arch/x86/kernel/quirks.c
index 1daf8f2aa21f..5b96654aacc0 100644
--- a/arch/x86/kernel/quirks.c
+++ b/arch/x86/kernel/quirks.c
@@ -4,6 +4,7 @@ 
  */
 #include <linux/dmi.h>
 #include <linux/pci.h>
+#include <linux/platform_data/x86/machine.h>
 #include <linux/irq.h>
 
 #include <asm/hpet.h>