diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 19:23:32 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:31:31 +0100 |
commit | 5c720d37bf5c2864cd7e834afff88321d6e4d97d (patch) | |
tree | 33f489a48616cbc066ffa65a0de2c0122fe0b415 /drivers/cpufreq | |
parent | cpuidle: ladder.c needs module.h and not just moduleparam.h (diff) | |
download | linux-5c720d37bf5c2864cd7e834afff88321d6e4d97d.tar.xz linux-5c720d37bf5c2864cd7e834afff88321d6e4d97d.zip |
cpufreq: cpufreq_stats.c is a module, and should include module.h
So that we can clean up the header files and not be relying
on implicit includes from device.h ---> module.h
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/cpufreq_stats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/cpufreq_stats.c b/drivers/cpufreq/cpufreq_stats.c index faf7c5217848..c5072a91e848 100644 --- a/drivers/cpufreq/cpufreq_stats.c +++ b/drivers/cpufreq/cpufreq_stats.c @@ -15,6 +15,7 @@ #include <linux/cpu.h> #include <linux/sysfs.h> #include <linux/cpufreq.h> +#include <linux/module.h> #include <linux/jiffies.h> #include <linux/percpu.h> #include <linux/kobject.h> |