dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Ben Dooks 2008-10-21 14:07:12 +01:00
parent 92117a1fd3
commit 39669f594e
3 changed files with 6 additions and 6 deletions

View File

@ -55,7 +55,7 @@ void __init s3c6410_map_io(void)
void __init s3c6410_init_clocks(int xtal)
{
printk(KERN_INFO "%s: initialising clocks\n", __func__);
printk(KERN_DEBUG "%s: initialising clocks\n", __func__);
s3c24xx_register_baseclocks(xtal);
s3c64xx_register_clocks();
s3c6400_register_clocks();

View File

@ -230,7 +230,7 @@ void __init s3c64xx_init_irq(u32 vic0_valid, u32 vic1_valid)
{
int uart, irq;
printk(KERN_INFO "%s: initialising interrupts\n", __func__);
printk(KERN_DEBUG "%s: initialising interrupts\n", __func__);
/* initialise the pair of VICs */
vic_init(S3C_VA_VIC0, S3C_VIC0_BASE, vic0_valid);

View File

@ -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));