You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1014 B
26 lines
1014 B
Index: linux-2.6.21gum/drivers/cpufreq/cpufreq_ondemand.c
|
|
===================================================================
|
|
--- linux-2.6.21gum.orig/drivers/cpufreq/cpufreq_ondemand.c
|
|
+++ linux-2.6.21gum/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,
|
|
Index: linux-2.6.21gum/drivers/cpufreq/cpufreq_conservative.c
|
|
===================================================================
|
|
--- linux-2.6.21gum.orig/drivers/cpufreq/cpufreq_conservative.c
|
|
+++ linux-2.6.21gum/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,
|
|
|