@@ -68,7 +68,7 @@ static void __init mpc_oem_bus_info(struct mpc_bus *m, char *str)
68
68
{
69
69
memcpy (str , m -> bustype , 6 );
70
70
str [6 ] = 0 ;
71
- apic_printk ( APIC_VERBOSE , "Bus #%d is %s\n" , m -> busid , str );
71
+ apic_pr_verbose ( "Bus #%d is %s\n" , m -> busid , str );
72
72
}
73
73
74
74
static void __init MP_bus_info (struct mpc_bus * m )
@@ -417,7 +417,7 @@ static unsigned long __init get_mpc_size(unsigned long physptr)
417
417
mpc = early_memremap (physptr , PAGE_SIZE );
418
418
size = mpc -> length ;
419
419
early_memunmap (mpc , PAGE_SIZE );
420
- apic_printk ( APIC_VERBOSE , " mpc: %lx-%lx\n" , physptr , physptr + size );
420
+ apic_pr_verbose ( " mpc: %lx-%lx\n" , physptr , physptr + size );
421
421
422
422
return size ;
423
423
}
@@ -560,8 +560,7 @@ static int __init smp_scan_config(unsigned long base, unsigned long length)
560
560
struct mpf_intel * mpf ;
561
561
int ret = 0 ;
562
562
563
- apic_printk (APIC_VERBOSE , "Scan for SMP in [mem %#010lx-%#010lx]\n" ,
564
- base , base + length - 1 );
563
+ apic_pr_verbose ("Scan for SMP in [mem %#010lx-%#010lx]\n" , base , base + length - 1 );
565
564
BUILD_BUG_ON (sizeof (* mpf ) != 16 );
566
565
567
566
while (length > 0 ) {
@@ -683,13 +682,13 @@ static void __init check_irq_src(struct mpc_intsrc *m, int *nr_m_spare)
683
682
{
684
683
int i ;
685
684
686
- apic_printk ( APIC_VERBOSE , "OLD " );
685
+ apic_pr_verbose ( "OLD " );
687
686
print_mp_irq_info (m );
688
687
689
688
i = get_MP_intsrc_index (m );
690
689
if (i > 0 ) {
691
690
memcpy (m , & mp_irqs [i ], sizeof (* m ));
692
- apic_printk ( APIC_VERBOSE , "NEW " );
691
+ apic_pr_verbose ( "NEW " );
693
692
print_mp_irq_info (& mp_irqs [i ]);
694
693
return ;
695
694
}
@@ -772,7 +771,7 @@ static int __init replace_intsrc_all(struct mpc_table *mpc,
772
771
continue ;
773
772
774
773
if (nr_m_spare > 0 ) {
775
- apic_printk ( APIC_VERBOSE , "*NEW* found\n" );
774
+ apic_pr_verbose ( "*NEW* found\n" );
776
775
nr_m_spare -- ;
777
776
memcpy (m_spare [nr_m_spare ], & mp_irqs [i ], sizeof (mp_irqs [i ]));
778
777
m_spare [nr_m_spare ] = NULL ;
0 commit comments