diff options
author | Jonghwan Choi <jhbird.choi@samsung.com> | 2012-12-23 18:59:06 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-12-23 18:59:06 -0500 |
commit | 94aa44090eda62320ce0dfd8c52ac21e787215a2 (patch) | |
tree | cb4e6cc35eff222cf7696ecf80550c7a957c55db /drivers/cpufreq | |
parent | 0e0e425f58fc91b7559350e12060938f8fa7a1c2 (diff) |
cpufreq: exynos: Add missing static
Add missing 'static' qualifiers.
Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/exynos4210-cpufreq.c | 2 | ||||
-rw-r--r-- | drivers/cpufreq/exynos4x12-cpufreq.c | 2 | ||||
-rw-r--r-- | drivers/cpufreq/exynos5250-cpufreq.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/cpufreq/exynos4210-cpufreq.c b/drivers/cpufreq/exynos4210-cpufreq.c index 250dcf0c0b22..de91755e2556 100644 --- a/drivers/cpufreq/exynos4210-cpufreq.c +++ b/drivers/cpufreq/exynos4210-cpufreq.c | |||
@@ -114,7 +114,7 @@ static void exynos4210_set_apll(unsigned int index) | |||
114 | } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT)); | 114 | } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT)); |
115 | } | 115 | } |
116 | 116 | ||
117 | bool exynos4210_pms_change(unsigned int old_index, unsigned int new_index) | 117 | static bool exynos4210_pms_change(unsigned int old_index, unsigned int new_index) |
118 | { | 118 | { |
119 | unsigned int old_pm = apll_freq_4210[old_index].mps >> 8; | 119 | unsigned int old_pm = apll_freq_4210[old_index].mps >> 8; |
120 | unsigned int new_pm = apll_freq_4210[new_index].mps >> 8; | 120 | unsigned int new_pm = apll_freq_4210[new_index].mps >> 8; |
diff --git a/drivers/cpufreq/exynos4x12-cpufreq.c b/drivers/cpufreq/exynos4x12-cpufreq.c index 224445d3fd4f..0661039e5d4a 100644 --- a/drivers/cpufreq/exynos4x12-cpufreq.c +++ b/drivers/cpufreq/exynos4x12-cpufreq.c | |||
@@ -166,7 +166,7 @@ static void exynos4x12_set_apll(unsigned int index) | |||
166 | } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT)); | 166 | } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT)); |
167 | } | 167 | } |
168 | 168 | ||
169 | bool exynos4x12_pms_change(unsigned int old_index, unsigned int new_index) | 169 | static bool exynos4x12_pms_change(unsigned int old_index, unsigned int new_index) |
170 | { | 170 | { |
171 | unsigned int old_pm = apll_freq_4x12[old_index].mps >> 8; | 171 | unsigned int old_pm = apll_freq_4x12[old_index].mps >> 8; |
172 | unsigned int new_pm = apll_freq_4x12[new_index].mps >> 8; | 172 | unsigned int new_pm = apll_freq_4x12[new_index].mps >> 8; |
diff --git a/drivers/cpufreq/exynos5250-cpufreq.c b/drivers/cpufreq/exynos5250-cpufreq.c index 736a5cfdfd17..b9344869f822 100644 --- a/drivers/cpufreq/exynos5250-cpufreq.c +++ b/drivers/cpufreq/exynos5250-cpufreq.c | |||
@@ -143,7 +143,7 @@ static void set_apll(unsigned int new_index, | |||
143 | 143 | ||
144 | } | 144 | } |
145 | 145 | ||
146 | bool exynos5250_pms_change(unsigned int old_index, unsigned int new_index) | 146 | static bool exynos5250_pms_change(unsigned int old_index, unsigned int new_index) |
147 | { | 147 | { |
148 | unsigned int old_pm = apll_freq_5250[old_index].mps >> 8; | 148 | unsigned int old_pm = apll_freq_5250[old_index].mps >> 8; |
149 | unsigned int new_pm = apll_freq_5250[new_index].mps >> 8; | 149 | unsigned int new_pm = apll_freq_5250[new_index].mps >> 8; |