7085e5331e
SVN-Revision: 14454
23 lines
692 B
Diff
23 lines
692 B
Diff
--- a/drivers/cpufreq/cpufreq_ondemand.c
|
|
+++ b/drivers/cpufreq/cpufreq_ondemand.c
|
|
@@ -573,7 +573,7 @@ static int cpufreq_governor_dbs(struct c
|
|
return 0;
|
|
}
|
|
|
|
-static struct cpufreq_governor cpufreq_gov_dbs = {
|
|
+struct cpufreq_governor cpufreq_gov_dbs = {
|
|
.name = "ondemand",
|
|
.governor = cpufreq_governor_dbs,
|
|
.owner = THIS_MODULE,
|
|
--- a/drivers/cpufreq/cpufreq_conservative.c
|
|
+++ b/drivers/cpufreq/cpufreq_conservative.c
|
|
@@ -551,7 +551,7 @@ static int cpufreq_governor_dbs(struct c
|
|
return 0;
|
|
}
|
|
|
|
-static struct cpufreq_governor cpufreq_gov_dbs = {
|
|
+struct cpufreq_governor cpufreq_gov_dbs = {
|
|
.name = "conservative",
|
|
.governor = cpufreq_governor_dbs,
|
|
.owner = THIS_MODULE,
|