mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 22:23:08 +02:00
ba2e2fa7be
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14454 3c298f89-4303-0410-b956-a3cf2f4a3e73
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,
|