diff options
author | Olof Johansson <olof@lixom.net> | 2011-10-10 00:57:04 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2011-10-13 17:08:30 -0400 |
commit | 6686c733b82ff68197382785a59521652d35fc1b (patch) | |
tree | 896f4e5eb366530dcf1df546ce1fd6baab904b4c /arch/arm/mach-tegra/cpu-tegra.c | |
parent | fdb684ac1c6ea93702891c43fd2ff8aadd7f2868 (diff) |
ARM: tegra: cpu-tegra: unexport two functions
Two static functions that are not exported:
arch/arm/mach-tegra/cpu-tegra.c:59:5: warning: symbol 'tegra_verify_speed' was not declared. Should it be static?
arch/arm/mach-tegra/cpu-tegra.c:64:14: warning: symbol 'tegra_getspeed' was not declared. Should it be static?
Signed-off-by: Olof Johansson <olof@lixom.net>
Acked-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-tegra/cpu-tegra.c')
-rw-r--r-- | arch/arm/mach-tegra/cpu-tegra.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/cpu-tegra.c b/arch/arm/mach-tegra/cpu-tegra.c index f15b689b749f..b2647ec709d4 100644 --- a/arch/arm/mach-tegra/cpu-tegra.c +++ b/arch/arm/mach-tegra/cpu-tegra.c | |||
@@ -57,12 +57,12 @@ static unsigned long target_cpu_speed[NUM_CPUS]; | |||
57 | static DEFINE_MUTEX(tegra_cpu_lock); | 57 | static DEFINE_MUTEX(tegra_cpu_lock); |
58 | static bool is_suspended; | 58 | static bool is_suspended; |
59 | 59 | ||
60 | int tegra_verify_speed(struct cpufreq_policy *policy) | 60 | static int tegra_verify_speed(struct cpufreq_policy *policy) |
61 | { | 61 | { |
62 | return cpufreq_frequency_table_verify(policy, freq_table); | 62 | return cpufreq_frequency_table_verify(policy, freq_table); |
63 | } | 63 | } |
64 | 64 | ||
65 | unsigned int tegra_getspeed(unsigned int cpu) | 65 | static unsigned int tegra_getspeed(unsigned int cpu) |
66 | { | 66 | { |
67 | unsigned long rate; | 67 | unsigned long rate; |
68 | 68 | ||