diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-04-29 09:24:48 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-05-12 08:04:15 -0400 |
commit | 2b80f3138e8470194745a6b954b4905060ab4067 (patch) | |
tree | cd859e13e087e2db208c9396cc3b8b03b90d8d31 /drivers/cpufreq/arm_big_little.c | |
parent | 4521adf85cd18e4652b9285846835f74418bd88f (diff) |
cpufreq: ARM big LITTLE: Improve print message
The message printed at the end of driver->init() doesn't include the
"cpufreq" string at all and so is difficult to find in dmesg. Add
function name to that message to clearly state where the message is
coming from.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/arm_big_little.c')
-rw-r--r-- | drivers/cpufreq/arm_big_little.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/arm_big_little.c b/drivers/cpufreq/arm_big_little.c index fd7beed801f8..5d7f53fcd6f5 100644 --- a/drivers/cpufreq/arm_big_little.c +++ b/drivers/cpufreq/arm_big_little.c | |||
@@ -187,7 +187,7 @@ static int bL_cpufreq_init(struct cpufreq_policy *policy) | |||
187 | 187 | ||
188 | cpumask_copy(policy->cpus, topology_core_cpumask(policy->cpu)); | 188 | cpumask_copy(policy->cpus, topology_core_cpumask(policy->cpu)); |
189 | 189 | ||
190 | dev_info(cpu_dev, "CPU %d initialized\n", policy->cpu); | 190 | dev_info(cpu_dev, "%s: CPU %d initialized\n", __func__, policy->cpu); |
191 | return 0; | 191 | return 0; |
192 | } | 192 | } |
193 | 193 | ||