diff options
author | Jonghwan Choi <jhbird.choi@samsung.com> | 2012-12-23 15:59:06 -0800 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-12-23 15:59:06 -0800 |
commit | 94aa44090eda62320ce0dfd8c52ac21e787215a2 (patch) | |
tree | cb4e6cc35eff222cf7696ecf80550c7a957c55db /drivers/cpufreq/exynos5250-cpufreq.c | |
parent | 0e0e425f58fc91b7559350e12060938f8fa7a1c2 (diff) | |
download | blackbird-op-linux-94aa44090eda62320ce0dfd8c52ac21e787215a2.tar.gz blackbird-op-linux-94aa44090eda62320ce0dfd8c52ac21e787215a2.zip |
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/exynos5250-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/exynos5250-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, } -bool exynos5250_pms_change(unsigned int old_index, unsigned int new_index) +static bool exynos5250_pms_change(unsigned int old_index, unsigned int new_index) { unsigned int old_pm = apll_freq_5250[old_index].mps >> 8; unsigned int new_pm = apll_freq_5250[new_index].mps >> 8; |