diff options
author | Kevin Hilman <khilman@deeprootsystems.com> | 2010-08-05 10:55:16 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-09-24 07:40:23 -0700 |
commit | c89f1681450822c74afb3217ed4c24a177a23f43 (patch) | |
tree | b61a8dcd157d10598ec626623bc1afa4c16a71e8 /arch/arm/mach-davinci/clock.c | |
parent | 4b5dc96a71b85f2d8759decb23a2ade49a722561 (diff) | |
download | blackbird-obmc-linux-c89f1681450822c74afb3217ed4c24a177a23f43.tar.gz blackbird-obmc-linux-c89f1681450822c74afb3217ed4c24a177a23f43.zip |
davinci: clock: make 'disable unused clocks' printk debug only
The long list of clocks being disabled on boot is noisy and not needed
for standard boots. Make this a debug printk instead.
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/clock.c')
-rw-r--r-- | arch/arm/mach-davinci/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c index 054c303caead..5b0cb62a058f 100644 --- a/arch/arm/mach-davinci/clock.c +++ b/arch/arm/mach-davinci/clock.c @@ -236,7 +236,7 @@ static int __init clk_disable_unused(void) if (!davinci_psc_is_clk_active(ck->gpsc, ck->lpsc)) continue; - pr_info("Clocks: disable unused %s\n", ck->name); + pr_debug("Clocks: disable unused %s\n", ck->name); davinci_psc_config(psc_domain(ck), ck->gpsc, ck->lpsc, (ck->flags & PSC_SWRSTDISABLE) ? |