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-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a6ee87790b708dc4cdd3643104417793f0d985ec;p=linux-beck.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 b8d1d205e1ef..3475f65aeec6 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;