Commit 2f0d6f20 authored by Axel Lin's avatar Axel Lin Committed by Dave Jones

[CPUFREQ] exynos4210: make needlessly global symbols static

The following symbols are needlessly defined global:
  exynos4_verify_speed
  exynos4_getspeed
  exynos4_set_clkdiv

Make them static.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Acked-by: default avatarKukjin Kim <kgene.kim@samsung.com>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent ef993ef8
...@@ -191,17 +191,17 @@ static unsigned int exynos4_apll_pms_table[CPUFREQ_LEVEL_END] = { ...@@ -191,17 +191,17 @@ static unsigned int exynos4_apll_pms_table[CPUFREQ_LEVEL_END] = {
((200 << 16) | (6 << 8) | 4), ((200 << 16) | (6 << 8) | 4),
}; };
int exynos4_verify_speed(struct cpufreq_policy *policy) static int exynos4_verify_speed(struct cpufreq_policy *policy)
{ {
return cpufreq_frequency_table_verify(policy, exynos4_freq_table); return cpufreq_frequency_table_verify(policy, exynos4_freq_table);
} }
unsigned int exynos4_getspeed(unsigned int cpu) static unsigned int exynos4_getspeed(unsigned int cpu)
{ {
return clk_get_rate(cpu_clk) / 1000; return clk_get_rate(cpu_clk) / 1000;
} }
void exynos4_set_clkdiv(unsigned int div_index) static void exynos4_set_clkdiv(unsigned int div_index)
{ {
unsigned int tmp; unsigned int tmp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment