diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-01-03 13:27:37 +0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2014-01-06 04:18:33 +0400 |
commit | 87ae97f10c0d20cb5d9fc24c60eb1d1726d448c9 (patch) | |
tree | 9d2d4a03e55d88d55f9fd9af9363f645eb4159bc /drivers/cpufreq | |
parent | 8f82b196866c4c3ec4cdc687667707d442d0c23b (diff) | |
download | linux-87ae97f10c0d20cb5d9fc24c60eb1d1726d448c9.tar.xz |
cpufreq: s3c24xx: Staticize local variable
Local variable used only in this file is made static.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/s3c24xx-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/s3c24xx-cpufreq.c b/drivers/cpufreq/s3c24xx-cpufreq.c index 485088253358..35fa697e615a 100644 --- a/drivers/cpufreq/s3c24xx-cpufreq.c +++ b/drivers/cpufreq/s3c24xx-cpufreq.c @@ -509,7 +509,7 @@ int __init s3c_cpufreq_setboard(struct s3c_cpufreq_board *board) return 0; } -int __init s3c_cpufreq_auto_io(void) +static int __init s3c_cpufreq_auto_io(void) { int ret; |