diff options
Diffstat (limited to 'arch/sh/kernel/cpufreq.c')
-rw-r--r-- | arch/sh/kernel/cpufreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/sh/kernel/cpufreq.c b/arch/sh/kernel/cpufreq.c index 71d1c427b907..e0590ffebd73 100644 --- a/arch/sh/kernel/cpufreq.c +++ b/arch/sh/kernel/cpufreq.c | |||
@@ -77,8 +77,6 @@ static int sh_cpufreq_target(struct cpufreq_policy *policy, | |||
77 | 77 | ||
78 | static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy) | 78 | static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy) |
79 | { | 79 | { |
80 | printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n"); | ||
81 | |||
82 | if (!cpu_online(policy->cpu)) | 80 | if (!cpu_online(policy->cpu)) |
83 | return -ENODEV; | 81 | return -ENODEV; |
84 | 82 | ||
@@ -143,6 +141,7 @@ static struct cpufreq_driver sh_cpufreq_driver = { | |||
143 | 141 | ||
144 | static int __init sh_cpufreq_module_init(void) | 142 | static int __init sh_cpufreq_module_init(void) |
145 | { | 143 | { |
144 | printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n"); | ||
146 | return cpufreq_register_driver(&sh_cpufreq_driver); | 145 | return cpufreq_register_driver(&sh_cpufreq_driver); |
147 | } | 146 | } |
148 | 147 | ||