aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/plat-s3c64xx/s3c6400-clock.c
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2008-10-21 14:07:12 +0100
committerBen Dooks <ben-linux@fluff.org>2008-10-21 14:12:27 +0100
commit83f9b0a369ac7cf174666cd537ed41c69abb8bbc (patch)
tree1c39f092a3fa644bd79a0aaab7c58812b8f32aa9 /arch/arm/plat-s3c64xx/s3c6400-clock.c
parent1404fbac6a2217ca76ffda0d97f84fbfa3382aab (diff)
[ARM] S3C64XX: Reduce some output from INFO to DEBUG
Some of the startup output can be reduced to KERN_DEBUG from KERN_INFO as it is only really useful when trying to debug kernel initialisation problems. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx/s3c6400-clock.c')
-rw-r--r--arch/arm/plat-s3c64xx/s3c6400-clock.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c
index ff5d907f2fc..64a9721cccb 100644
--- a/arch/arm/plat-s3c64xx/s3c6400-clock.c
+++ b/arch/arm/plat-s3c64xx/s3c6400-clock.c
@@ -137,7 +137,7 @@ static unsigned long s3c64xx_clk_doutmpll_get_rate(struct clk *clk)
{
unsigned long rate = clk_get_rate(clk->parent);
- printk(KERN_INFO "%s: parent is %ld\n", __func__, rate);
+ printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate);
if (__raw_readl(S3C_CLK_DIV0) & S3C6400_CLKDIV0_MPLL_MASK)
rate /= 2;
@@ -573,10 +573,10 @@ void __init_or_cpufreq s3c6400_setup_clocks(void)
unsigned int ptr;
u32 clkdiv0;
- printk(KERN_INFO "%s: registering clocks\n", __func__);
+ printk(KERN_DEBUG "%s: registering clocks\n", __func__);
clkdiv0 = __raw_readl(S3C_CLK_DIV0);
- printk(KERN_INFO "%s: clkdiv0 = %08x\n", __func__, clkdiv0);
+ printk(KERN_DEBUG "%s: clkdiv0 = %08x\n", __func__, clkdiv0);
xtal_clk = clk_get(NULL, "xtal");
BUG_ON(IS_ERR(xtal_clk));
@@ -584,7 +584,7 @@ void __init_or_cpufreq s3c6400_setup_clocks(void)
xtal = clk_get_rate(xtal_clk);
clk_put(xtal_clk);
- printk(KERN_INFO "%s: xtal is %ld\n", __func__, xtal);
+ printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal);
epll = s3c6400_get_epll(xtal);
mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON));