diff options
author | Cyrill Gorcunov <gorcunov@openvz.org> | 2009-05-01 23:54:25 +0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-01 21:56:25 +0200 |
commit | 6f0aced639d346e5f54eea9fcb2784b633493d09 (patch) | |
tree | 221004ef96c63c97cdaefc048721dde1a28149f4 | |
parent | e0e42142bab96404de535cceb85d6533d5ad7942 (diff) |
x86, apic: use pr_ macro
Replace recenly appeared printk with pr_ macro
(the file already use a lot of them).
[ Impact: cleanup ]
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
LKML-Reference: <20090501195425.GB4633@lenovo>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 28f747d61d78..e258bedce7cb 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -2191,7 +2191,7 @@ static int __cpuinit set_multi(const struct dmi_system_id *d) { if (multi) return 0; - printk(KERN_INFO "APIC: %s detected, Multi Chassis\n", d->ident); + pr_info("APIC: %s detected, Multi Chassis\n", d->ident); multi = 1; return 0; } |