sh: Make cpufreq driver less noisy on SMP.
The cpufreq driver banner is currently printed for each CPU, move it down so it's not as noisy and it's only printed once. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
c1a069f960
commit
00765c816a
|
@ -77,8 +77,6 @@ static int sh_cpufreq_target(struct cpufreq_policy *policy,
|
||||||
|
|
||||||
static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
|
static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n");
|
|
||||||
|
|
||||||
if (!cpu_online(policy->cpu))
|
if (!cpu_online(policy->cpu))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
|
@ -144,6 +142,7 @@ static struct cpufreq_driver sh_cpufreq_driver = {
|
||||||
|
|
||||||
static int __init sh_cpufreq_module_init(void)
|
static int __init sh_cpufreq_module_init(void)
|
||||||
{
|
{
|
||||||
|
printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n");
|
||||||
return cpufreq_register_driver(&sh_cpufreq_driver);
|
return cpufreq_register_driver(&sh_cpufreq_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue