summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-08-10 15:54:49 -0700
committerSimon Glass <sjg@chromium.org>2011-08-29 10:59:29 -0700
commit475a78304761b5cadf2fc10789b24b7b503aa39b (patch)
tree67146b44a7afa5e6768360c85941c90a6188ed6d /arch
parent83861f814d52d5a37d9420071c3e413c8b03ce3d (diff)
tegra2: Remove 'clock not honored' message
We are now far enough along that this can become a debug message. This cuts about 50ms from boot time when silent console is not enabled. BUG=chromium-os:17805 TEST=build and boot on Aebl, see that message is gone Change-Id: I9c6bce88f877fd13c7b6a24284fa6e2f9d418fe4 Reviewed-on: http://gerrit.chromium.org/gerrit/5774 Reviewed-by: Tom Warren <twarren@nvidia.com> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/tegra2/clock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv7/tegra2/clock.c b/arch/arm/cpu/armv7/tegra2/clock.c
index b3a4b7e1056..25924fe9557 100644
--- a/arch/arm/cpu/armv7/tegra2/clock.c
+++ b/arch/arm/cpu/armv7/tegra2/clock.c
@@ -706,7 +706,7 @@ unsigned clock_adjust_periph_pll_div(enum periph_id periph_id,
if (extra_div)
effective_rate /= *extra_div;
if (rate != effective_rate)
- printf("Requested clock rate %u not honored (got %u)\n",
+ debug("Requested clock rate %u not honored (got %u)\n",
rate, effective_rate);
return effective_rate;
}