diff options
author | Jan Beulich <jbeulich@novell.com> | 2009-03-12 08:57:10 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-12 21:37:19 -0400 |
commit | 82034d6f59b4772f4233bbb61c670290803a9960 (patch) | |
tree | 3c88cc182f7ee6ccce6819f77ec1f3792613b6e9 | |
parent | 9a50156a1c7bfa65315facaffdfbed6513fcfd3b (diff) |
x86: clean up output resulting from update_mptable option
Impact: cleanup
Without apic=verbose, using the update_mptable option would result in
garbled and confusing output due to the inconsistent use of printk() vs
apic_printk().
Signed-off-by: Jan Beulich <jbeulich@novell.com>
LKML-Reference: <49B914B6.76E4.0078.0@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/x86/kernel/mpparse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index e8192401da47..47673e02ae58 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
@@ -890,12 +890,12 @@ static int __init replace_intsrc_all(struct mpc_table *mpc, | |||
890 | #ifdef CONFIG_X86_IO_APIC | 890 | #ifdef CONFIG_X86_IO_APIC |
891 | struct mpc_intsrc *m = (struct mpc_intsrc *)mpt; | 891 | struct mpc_intsrc *m = (struct mpc_intsrc *)mpt; |
892 | 892 | ||
893 | printk(KERN_INFO "OLD "); | 893 | apic_printk(APIC_VERBOSE, "OLD "); |
894 | print_MP_intsrc_info(m); | 894 | print_MP_intsrc_info(m); |
895 | i = get_MP_intsrc_index(m); | 895 | i = get_MP_intsrc_index(m); |
896 | if (i > 0) { | 896 | if (i > 0) { |
897 | assign_to_mpc_intsrc(&mp_irqs[i], m); | 897 | assign_to_mpc_intsrc(&mp_irqs[i], m); |
898 | printk(KERN_INFO "NEW "); | 898 | apic_printk(APIC_VERBOSE, "NEW "); |
899 | print_mp_irq_info(&mp_irqs[i]); | 899 | print_mp_irq_info(&mp_irqs[i]); |
900 | } else if (!i) { | 900 | } else if (!i) { |
901 | /* legacy, do nothing */ | 901 | /* legacy, do nothing */ |
@@ -943,7 +943,7 @@ static int __init replace_intsrc_all(struct mpc_table *mpc, | |||
943 | continue; | 943 | continue; |
944 | 944 | ||
945 | if (nr_m_spare > 0) { | 945 | if (nr_m_spare > 0) { |
946 | printk(KERN_INFO "*NEW* found "); | 946 | apic_printk(APIC_VERBOSE, "*NEW* found\n"); |
947 | nr_m_spare--; | 947 | nr_m_spare--; |
948 | assign_to_mpc_intsrc(&mp_irqs[i], m_spare[nr_m_spare]); | 948 | assign_to_mpc_intsrc(&mp_irqs[i], m_spare[nr_m_spare]); |
949 | m_spare[nr_m_spare] = NULL; | 949 | m_spare[nr_m_spare] = NULL; |