diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-06-15 10:55:59 +0100 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2017-06-24 01:43:21 +0200 |
commit | 0370f0f975e5561c658aa86e2c372079e6a425eb (patch) | |
tree | aa338d7ce582be6b85802212893c4bd63e520560 /drivers/cpufreq/sfi-cpufreq.c | |
parent | e773f5c7e8c6279b2560ae1ca2a1d37cc12fe7c3 (diff) | |
download | blackbird-obmc-linux-0370f0f975e5561c658aa86e2c372079e6a425eb.tar.gz blackbird-obmc-linux-0370f0f975e5561c658aa86e2c372079e6a425eb.zip |
cpufreq: sfi: make freq_table static
pointer freq_table can be made static as it does not need to be in
global scope.
Cleans up sparse warning:
"symbol 'freq_table' was not declared. Should it be static?"
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/sfi-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/sfi-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/sfi-cpufreq.c b/drivers/cpufreq/sfi-cpufreq.c index 992ce6f9abec..3779742f86e3 100644 --- a/drivers/cpufreq/sfi-cpufreq.c +++ b/drivers/cpufreq/sfi-cpufreq.c @@ -24,7 +24,7 @@ #include <asm/msr.h> -struct cpufreq_frequency_table *freq_table; +static struct cpufreq_frequency_table *freq_table; static struct sfi_freq_table_entry *sfi_cpufreq_array; static int num_freq_table_entries; |