aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/mshyperv.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-05-10 01:46:54 -0400
committerH. Peter Anvin <hpa@zytor.com>2010-05-10 01:46:54 -0400
commit3998d095354d2a3062bdaa821ef07a1e1c82873c (patch)
treefc51a0cfe2e96f8a1fd52cc1f68af07974307843 /arch/x86/kernel/cpu/mshyperv.c
parenta10a569806e43b9be5fce60b21f836b50b1010e4 (diff)
x86, hypervisor: add missing <linux/module.h>
EXPORT_SYMBOL() needs <linux/module.h> to be included; fixes modular builds of the VMware balloon driver, and any future modular drivers which depends on the hypervisor. Reported-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: H. Peter Anvin <hpa@zytor.com> Cc: Greg KH <greg@kroah.com> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Alok Kataria <akataria@vmware.com> Cc: Ky Srinivasan <ksrinivasan@novell.com> Cc: Dmitry Torokhov <dtor@vmware.com> LKML-Reference: <4BE49778.6060800@zytor.com>
Diffstat (limited to 'arch/x86/kernel/cpu/mshyperv.c')
-rw-r--r--arch/x86/kernel/cpu/mshyperv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
index 0f1371724c86..16f41bbe46b6 100644
--- a/arch/x86/kernel/cpu/mshyperv.c
+++ b/arch/x86/kernel/cpu/mshyperv.c
@@ -11,6 +11,7 @@
11 */ 11 */
12 12
13#include <linux/types.h> 13#include <linux/types.h>
14#include <linux/module.h>
14#include <asm/processor.h> 15#include <asm/processor.h>
15#include <asm/hypervisor.h> 16#include <asm/hypervisor.h>
16#include <asm/hyperv.h> 17#include <asm/hyperv.h>