msm: acpuclock-krait: Replace remaining pr_* prints with dev_* prints

This is done for consistency with other messages printed by this driver.

Change-Id: I373787c8a4f51f0aeba0f0556103707cf256bd43
Signed-off-by: Matt Wagantall <mattw@codeaurora.org>
This commit is contained in:
Matt Wagantall 2012-07-24 11:20:03 -07:00 committed by Stephen Boyd
parent c6954723c9
commit 65d6366b4f

View file

@ -11,8 +11,6 @@
* GNU General Public License for more details.
*/
#define pr_fmt(fmt) "%s: " fmt, __func__
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
@ -479,8 +477,8 @@ static int acpuclk_krait_set_rate(int cpu, unsigned long rate,
goto out;
}
pr_debug("Switching from ACPU%d rate %lu KHz -> %lu KHz\n",
cpu, strt_acpu_s->khz, tgt_acpu_s->khz);
dev_dbg(drv.dev, "Switching from ACPU%d rate %lu KHz -> %lu KHz\n",
cpu, strt_acpu_s->khz, tgt_acpu_s->khz);
/* Set the new CPU speed. */
set_speed(&drv.scalable[cpu], tgt_acpu_s);
@ -507,7 +505,7 @@ static int acpuclk_krait_set_rate(int cpu, unsigned long rate,
/* Drop VDD levels if we can. */
decrease_vdd(cpu, &vdd_data, reason);
pr_debug("ACPU%d speed change complete\n", cpu);
dev_dbg(drv.dev, "ACPU%d speed change complete\n", cpu);
out:
if (reason == SETRATE_CPUFREQ || reason == SETRATE_HOTPLUG)
@ -519,7 +517,7 @@ out:
static void __init hfpll_init(struct scalable *sc,
const struct core_speed *tgt_s)
{
pr_debug("Initializing HFPLL%d\n", sc - drv.scalable);
dev_dbg(drv.dev, "Initializing HFPLL%d\n", sc - drv.scalable);
/* Disable the PLL for re-programming. */
hfpll_disable(sc, true);