Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 460f5ef2 authored by Dave Jones's avatar Dave Jones
Browse files

[CPUFREQ] Fix warning in elanfreq



arch/x86/kernel/cpu/cpufreq/elanfreq.c:47:26: warning: symbol 'elan_multiplier' was not declared. Should it be static?

Yes, yes it should.

Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent f068c04b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -44,7 +44,7 @@ struct s_elan_multiplier {
 * It is important that the frequencies
 * It is important that the frequencies
 * are listed in ascending order here!
 * are listed in ascending order here!
 */
 */
struct s_elan_multiplier elan_multiplier[] = {
static struct s_elan_multiplier elan_multiplier[] = {
	{1000,	0x02,	0x18},
	{1000,	0x02,	0x18},
	{2000,	0x02,	0x10},
	{2000,	0x02,	0x10},
	{4000,	0x02,	0x08},
	{4000,	0x02,	0x08},