aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-06-15 10:55:59 +0100
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-06-24 01:43:21 +0200
commit0370f0f975e5561c658aa86e2c372079e6a425eb (patch)
treeaa338d7ce582be6b85802212893c4bd63e520560 /drivers/cpufreq
parentcpufreq: exynos5440: Fix inconsistent indenting (diff)
downloadlinux-dev-0370f0f975e5561c658aa86e2c372079e6a425eb.tar.xz
linux-dev-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')
-rw-r--r--drivers/cpufreq/sfi-cpufreq.c2
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;