diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-07-29 11:19:26 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:31:32 -0400 |
commit | a6ee87790b708dc4cdd3643104417793f0d985ec (patch) | |
tree | 9bf98a9d99f0661112e56a6db0642d3da1b04af5 | |
parent | 5c720d37bf5c2864cd7e834afff88321d6e4d97d (diff) |
cpufreq: Fix build of s3c64xx cpufreq driver for header change
The header change has removed an implicit include of module.h, breaking
the build due to the use of THIS_MODULE. Fix that.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | drivers/cpufreq/s3c64xx-cpufreq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/s3c64xx-cpufreq.c b/drivers/cpufreq/s3c64xx-cpufreq.c index b8d1d205e1ef..3475f65aeec6 100644 --- a/drivers/cpufreq/s3c64xx-cpufreq.c +++ b/drivers/cpufreq/s3c64xx-cpufreq.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/clk.h> | 15 | #include <linux/clk.h> |
16 | #include <linux/err.h> | 16 | #include <linux/err.h> |
17 | #include <linux/regulator/consumer.h> | 17 | #include <linux/regulator/consumer.h> |
18 | #include <linux/module.h> | ||
18 | 19 | ||
19 | static struct clk *armclk; | 20 | static struct clk *armclk; |
20 | static struct regulator *vddarm; | 21 | static struct regulator *vddarm; |