From: Mark Brown Date: Fri, 29 Jul 2011 15:19:26 +0000 (+0100) Subject: cpufreq: Fix build of s3c64xx cpufreq driver for header change X-Git-Tag: v3.2-rc1~22^2~108 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a6ee87790b708dc4cdd3643104417793f0d985ec;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Paul Gortmaker --- diff --git a/drivers/cpufreq/s3c64xx-cpufreq.c b/drivers/cpufreq/s3c64xx-cpufreq.c index b8d1d205e1eff..3475f65aeec69 100644 --- a/drivers/cpufreq/s3c64xx-cpufreq.c +++ b/drivers/cpufreq/s3c64xx-cpufreq.c @@ -15,6 +15,7 @@ #include #include #include +#include static struct clk *armclk; static struct regulator *vddarm;