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: next-20110812~2^2~94 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a7ebfd72acd2c503b32af2338dc8b095fb623279;p=karo-tx-linux.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;