diff options
author | Olof Johansson <olof@lixom.net> | 2006-04-12 16:20:27 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-04-22 04:45:08 -0400 |
commit | 224ad80ac0de102d7bede8d36afbd5ef0a64019f (patch) | |
tree | 8ebb087c133c9e217c1ed81c7544b6c102e320d8 /arch/powerpc/kernel/time.c | |
parent | 8b6a7b2ea2ab18d46bc9e0e76b614d8c155291ad (diff) |
[PATCH] powerpc: Quiet time init output
Move time_init console output to KERN_DEBUG prink level. No need to
print it at every boot.
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/time.c')
-rw-r--r-- | arch/powerpc/kernel/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/time.c b/arch/powerpc/kernel/time.c index 24e3ad756de0..b861ddcf86bb 100644 --- a/arch/powerpc/kernel/time.c +++ b/arch/powerpc/kernel/time.c | |||
@@ -945,9 +945,9 @@ void __init time_init(void) | |||
945 | } else { | 945 | } else { |
946 | /* Normal PowerPC with timebase register */ | 946 | /* Normal PowerPC with timebase register */ |
947 | ppc_md.calibrate_decr(); | 947 | ppc_md.calibrate_decr(); |
948 | printk(KERN_INFO "time_init: decrementer frequency = %lu.%.6lu MHz\n", | 948 | printk(KERN_DEBUG "time_init: decrementer frequency = %lu.%.6lu MHz\n", |
949 | ppc_tb_freq / 1000000, ppc_tb_freq % 1000000); | 949 | ppc_tb_freq / 1000000, ppc_tb_freq % 1000000); |
950 | printk(KERN_INFO "time_init: processor frequency = %lu.%.6lu MHz\n", | 950 | printk(KERN_DEBUG "time_init: processor frequency = %lu.%.6lu MHz\n", |
951 | ppc_proc_freq / 1000000, ppc_proc_freq % 1000000); | 951 | ppc_proc_freq / 1000000, ppc_proc_freq % 1000000); |
952 | tb_last_stamp = tb_last_jiffy = get_tb(); | 952 | tb_last_stamp = tb_last_jiffy = get_tb(); |
953 | } | 953 | } |