]> Pileus Git - ~andy/linux/commitdiff
cpufreq: exynos: Use static for functions used in only this file
authorTushar Behera <tushar.behera@linaro.org>
Wed, 21 Nov 2012 23:19:25 +0000 (00:19 +0100)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 21 Nov 2012 23:19:25 +0000 (00:19 +0100)
Fixes following sparse error.
drivers/cpufreq/exynos-cpufreq.c:34:5: warning: symbol
'exynos_verify_speed' was not declared. Should it be static?
drivers/cpufreq/exynos-cpufreq.c:40:14: warning: symbol
'exynos_getspeed' was not declared. Should it be static?

Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/exynos-cpufreq.c

index c0d54a8ba9490d34392fbc70b7ea589cb9470e71..7012ea8bf1e736aa82d9cd464429e41e7cfb1e70 100644 (file)
@@ -31,13 +31,13 @@ static unsigned int locking_frequency;
 static bool frequency_locked;
 static DEFINE_MUTEX(cpufreq_lock);
 
-int exynos_verify_speed(struct cpufreq_policy *policy)
+static int exynos_verify_speed(struct cpufreq_policy *policy)
 {
        return cpufreq_frequency_table_verify(policy,
                                              exynos_info->freq_table);
 }
 
-unsigned int exynos_getspeed(unsigned int cpu)
+static unsigned int exynos_getspeed(unsigned int cpu)
 {
        return clk_get_rate(exynos_info->cpu_clk) / 1000;
 }