diff options
author | Dave Jones <davej@redhat.com> | 2005-05-31 22:03:46 -0400 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2005-05-31 22:03:46 -0400 |
commit | 7f335d4ef2d50a693fad70b8fa053d0382f4a45c (patch) | |
tree | b4dad7441cc040c9223883761a05a2317a9c1ac0 /drivers/cpufreq/cpufreq_ondemand.c | |
parent | c5d28fb297efaa97c4b90e36f9dff3066e7f2778 (diff) |
[CPUFREQ] make cpufreq_gov_dbs static
This patch makes a needlessly global and EXPORT_SYMBOL'ed struct static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'drivers/cpufreq/cpufreq_ondemand.c')
-rw-r--r-- | drivers/cpufreq/cpufreq_ondemand.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 0bc0bff55d26..84c658822a10 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -459,12 +459,11 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
459 | return 0; | 459 | return 0; |
460 | } | 460 | } |
461 | 461 | ||
462 | struct cpufreq_governor cpufreq_gov_dbs = { | 462 | static struct cpufreq_governor cpufreq_gov_dbs = { |
463 | .name = "ondemand", | 463 | .name = "ondemand", |
464 | .governor = cpufreq_governor_dbs, | 464 | .governor = cpufreq_governor_dbs, |
465 | .owner = THIS_MODULE, | 465 | .owner = THIS_MODULE, |
466 | }; | 466 | }; |
467 | EXPORT_SYMBOL(cpufreq_gov_dbs); | ||
468 | 467 | ||
469 | static int __init cpufreq_gov_dbs_init(void) | 468 | static int __init cpufreq_gov_dbs_init(void) |
470 | { | 469 | { |