diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-10-21 09:07:12 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-12-15 18:18:21 -0500 |
commit | 39669f594e75997db6a893c1e4a1c05312661fe2 (patch) | |
tree | 8163dcf6af05b2c92654f3bb673352bdab0adc25 /arch/arm/plat-s3c64xx | |
parent | 92117a1fd3b7916e8882c6050a2f51f812209fcc (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')
-rw-r--r-- | arch/arm/plat-s3c64xx/irq.c | 2 | ||||
-rw-r--r-- | arch/arm/plat-s3c64xx/s3c6400-clock.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/plat-s3c64xx/irq.c b/arch/arm/plat-s3c64xx/irq.c index 99df9dbefa69..a94f1d5e819d 100644 --- a/arch/arm/plat-s3c64xx/irq.c +++ b/arch/arm/plat-s3c64xx/irq.c | |||
@@ -230,7 +230,7 @@ void __init s3c64xx_init_irq(u32 vic0_valid, u32 vic1_valid) | |||
230 | { | 230 | { |
231 | int uart, irq; | 231 | int uart, irq; |
232 | 232 | ||
233 | printk(KERN_INFO "%s: initialising interrupts\n", __func__); | 233 | printk(KERN_DEBUG "%s: initialising interrupts\n", __func__); |
234 | 234 | ||
235 | /* initialise the pair of VICs */ | 235 | /* initialise the pair of VICs */ |
236 | vic_init(S3C_VA_VIC0, S3C_VIC0_BASE, vic0_valid); | 236 | vic_init(S3C_VA_VIC0, S3C_VIC0_BASE, vic0_valid); |
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c index ff5d907f2fc4..64a9721cccb0 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) | |||
137 | { | 137 | { |
138 | unsigned long rate = clk_get_rate(clk->parent); | 138 | unsigned long rate = clk_get_rate(clk->parent); |
139 | 139 | ||
140 | printk(KERN_INFO "%s: parent is %ld\n", __func__, rate); | 140 | printk(KERN_DEBUG "%s: parent is %ld\n", __func__, rate); |
141 | 141 | ||
142 | if (__raw_readl(S3C_CLK_DIV0) & S3C6400_CLKDIV0_MPLL_MASK) | 142 | if (__raw_readl(S3C_CLK_DIV0) & S3C6400_CLKDIV0_MPLL_MASK) |
143 | rate /= 2; | 143 | rate /= 2; |
@@ -573,10 +573,10 @@ void __init_or_cpufreq s3c6400_setup_clocks(void) | |||
573 | unsigned int ptr; | 573 | unsigned int ptr; |
574 | u32 clkdiv0; | 574 | u32 clkdiv0; |
575 | 575 | ||
576 | printk(KERN_INFO "%s: registering clocks\n", __func__); | 576 | printk(KERN_DEBUG "%s: registering clocks\n", __func__); |
577 | 577 | ||
578 | clkdiv0 = __raw_readl(S3C_CLK_DIV0); | 578 | clkdiv0 = __raw_readl(S3C_CLK_DIV0); |
579 | printk(KERN_INFO "%s: clkdiv0 = %08x\n", __func__, clkdiv0); | 579 | printk(KERN_DEBUG "%s: clkdiv0 = %08x\n", __func__, clkdiv0); |
580 | 580 | ||
581 | xtal_clk = clk_get(NULL, "xtal"); | 581 | xtal_clk = clk_get(NULL, "xtal"); |
582 | BUG_ON(IS_ERR(xtal_clk)); | 582 | BUG_ON(IS_ERR(xtal_clk)); |
@@ -584,7 +584,7 @@ void __init_or_cpufreq s3c6400_setup_clocks(void) | |||
584 | xtal = clk_get_rate(xtal_clk); | 584 | xtal = clk_get_rate(xtal_clk); |
585 | clk_put(xtal_clk); | 585 | clk_put(xtal_clk); |
586 | 586 | ||
587 | printk(KERN_INFO "%s: xtal is %ld\n", __func__, xtal); | 587 | printk(KERN_DEBUG "%s: xtal is %ld\n", __func__, xtal); |
588 | 588 | ||
589 | epll = s3c6400_get_epll(xtal); | 589 | epll = s3c6400_get_epll(xtal); |
590 | mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON)); | 590 | mpll = s3c6400_get_pll(xtal, __raw_readl(S3C_MPLL_CON)); |