diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 18:33:10 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:30:36 +0100 |
commit | 7c52d55170ce84ddf9c0ad4e020ef1d7a97975a7 (patch) | |
tree | 6788d2f806d44a7cd437f38dc44169395112081e /drivers/idle/intel_idle.c | |
parent | x86: Fix files explicitly requiring export.h for EXPORT_SYMBOL/THIS_MODULE (diff) | |
download | linux-7c52d55170ce84ddf9c0ad4e020ef1d7a97975a7.tar.xz linux-7c52d55170ce84ddf9c0ad4e020ef1d7a97975a7.zip |
x86: fix up files really needing to include module.h
These files aren't just exporting symbols -- they are also defining
a MODULE_LICENSE etc. so give them the full module.h file.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/idle/intel_idle.c')
-rw-r--r-- | drivers/idle/intel_idle.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index a46dddf61078..18767f8ab090 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -61,6 +61,7 @@ #include <linux/sched.h> #include <linux/notifier.h> #include <linux/cpu.h> +#include <linux/module.h> #include <asm/mwait.h> #include <asm/msr.h> |