[GIT PULL] x86/headers change for v4.10

From: Ingo Molnar
Date: Mon Dec 12 2016 - 04:50:14 EST


Linus,

Please pull the latest x86-headers-for-linus git tree from:

git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-headers-for-linus

# HEAD: 523d0fb4f05dcefed59c6325acb54adc34ee4c2d x86/percpu: Remove unnecessary include of module.h, add asm/desc.h

Remove unnecessary module.h inclusion from core code. (Paul Gortmaker)

Thanks,

Ingo

------------------>
Paul Gortmaker (1):
x86/percpu: Remove unnecessary include of module.h, add asm/desc.h


arch/x86/kernel/setup_percpu.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/setup_percpu.c b/arch/x86/kernel/setup_percpu.c
index 2bbd27f89802..9820d6d977c6 100644
--- a/arch/x86/kernel/setup_percpu.c
+++ b/arch/x86/kernel/setup_percpu.c
@@ -1,7 +1,7 @@
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/kernel.h>
-#include <linux/module.h>
+#include <linux/export.h>
#include <linux/init.h>
#include <linux/bootmem.h>
#include <linux/percpu.h>
@@ -12,6 +12,7 @@
#include <linux/pfn.h>
#include <asm/sections.h>
#include <asm/processor.h>
+#include <asm/desc.h>
#include <asm/setup.h>
#include <asm/mpspec.h>
#include <asm/apicdef.h>