mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
[CPUFREQ] Don't export governors for default governor
We don't need to export the governors for use as the default governor, because the default governor will be built-in anyway and we can access the symbol directly. This also fixes the following sparse warnings: drivers/cpufreq/cpufreq_conservative.c:578:25: warning: symbol 'cpufreq_gov_conservative' was not declared. Should it be static? drivers/cpufreq/cpufreq_ondemand.c:582:25: warning: symbol 'cpufreq_gov_ondemand' was not declared. Should it be static? drivers/cpufreq/cpufreq_performance.c:39:25: warning: symbol 'cpufreq_gov_performance' was not declared. Should it be static? drivers/cpufreq/cpufreq_powersave.c:38:25: warning: symbol 'cpufreq_gov_powersave' was not declared. Should it be static? drivers/cpufreq/cpufreq_userspace.c:190:25: warning: symbol 'cpufreq_gov_userspace' was not declared. Should it be static? Signed-off-by: Sven Wegener <sven.wegener@stealer.net> Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
8080091310
commit
c4d14bc0bb
5 changed files with 15 additions and 5 deletions
|
@ -576,13 +576,15 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
|
||||||
|
static
|
||||||
|
#endif
|
||||||
struct cpufreq_governor cpufreq_gov_conservative = {
|
struct cpufreq_governor cpufreq_gov_conservative = {
|
||||||
.name = "conservative",
|
.name = "conservative",
|
||||||
.governor = cpufreq_governor_dbs,
|
.governor = cpufreq_governor_dbs,
|
||||||
.max_transition_latency = TRANSITION_LATENCY_LIMIT,
|
.max_transition_latency = TRANSITION_LATENCY_LIMIT,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(cpufreq_gov_conservative);
|
|
||||||
|
|
||||||
static int __init cpufreq_gov_dbs_init(void)
|
static int __init cpufreq_gov_dbs_init(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -626,13 +626,15 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
|
||||||
|
static
|
||||||
|
#endif
|
||||||
struct cpufreq_governor cpufreq_gov_ondemand = {
|
struct cpufreq_governor cpufreq_gov_ondemand = {
|
||||||
.name = "ondemand",
|
.name = "ondemand",
|
||||||
.governor = cpufreq_governor_dbs,
|
.governor = cpufreq_governor_dbs,
|
||||||
.max_transition_latency = TRANSITION_LATENCY_LIMIT,
|
.max_transition_latency = TRANSITION_LATENCY_LIMIT,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(cpufreq_gov_ondemand);
|
|
||||||
|
|
||||||
static int __init cpufreq_gov_dbs_init(void)
|
static int __init cpufreq_gov_dbs_init(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -36,12 +36,14 @@ static int cpufreq_governor_performance(struct cpufreq_policy *policy,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE_MODULE
|
||||||
|
static
|
||||||
|
#endif
|
||||||
struct cpufreq_governor cpufreq_gov_performance = {
|
struct cpufreq_governor cpufreq_gov_performance = {
|
||||||
.name = "performance",
|
.name = "performance",
|
||||||
.governor = cpufreq_governor_performance,
|
.governor = cpufreq_governor_performance,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(cpufreq_gov_performance);
|
|
||||||
|
|
||||||
|
|
||||||
static int __init cpufreq_gov_performance_init(void)
|
static int __init cpufreq_gov_performance_init(void)
|
||||||
|
|
|
@ -35,12 +35,14 @@ static int cpufreq_governor_powersave(struct cpufreq_policy *policy,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE
|
||||||
|
static
|
||||||
|
#endif
|
||||||
struct cpufreq_governor cpufreq_gov_powersave = {
|
struct cpufreq_governor cpufreq_gov_powersave = {
|
||||||
.name = "powersave",
|
.name = "powersave",
|
||||||
.governor = cpufreq_governor_powersave,
|
.governor = cpufreq_governor_powersave,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(cpufreq_gov_powersave);
|
|
||||||
|
|
||||||
static int __init cpufreq_gov_powersave_init(void)
|
static int __init cpufreq_gov_powersave_init(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -187,6 +187,9 @@ static int cpufreq_governor_userspace(struct cpufreq_policy *policy,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE
|
||||||
|
static
|
||||||
|
#endif
|
||||||
struct cpufreq_governor cpufreq_gov_userspace = {
|
struct cpufreq_governor cpufreq_gov_userspace = {
|
||||||
.name = "userspace",
|
.name = "userspace",
|
||||||
.governor = cpufreq_governor_userspace,
|
.governor = cpufreq_governor_userspace,
|
||||||
|
@ -194,7 +197,6 @@ struct cpufreq_governor cpufreq_gov_userspace = {
|
||||||
.show_setspeed = show_speed,
|
.show_setspeed = show_speed,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(cpufreq_gov_userspace);
|
|
||||||
|
|
||||||
static int __init cpufreq_gov_userspace_init(void)
|
static int __init cpufreq_gov_userspace_init(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue