|
@@ -384,19 +384,20 @@ static void inquire_remote_apic(int apicid)
|
|
|
unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
|
|
|
char *names[] = { "ID", "VERSION", "SPIV" };
|
|
|
int timeout;
|
|
|
- unsigned int status;
|
|
|
+ u32 status;
|
|
|
|
|
|
printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(regs); i++) {
|
|
|
- printk("... APIC #%d %s: ", apicid, names[i]);
|
|
|
+ printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
|
|
|
|
|
|
/*
|
|
|
* Wait for idle.
|
|
|
*/
|
|
|
status = safe_apic_wait_icr_idle();
|
|
|
if (status)
|
|
|
- printk("a previous APIC delivery may have failed\n");
|
|
|
+ printk(KERN_CONT
|
|
|
+ "a previous APIC delivery may have failed\n");
|
|
|
|
|
|
apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
|
|
|
apic_write(APIC_ICR, APIC_DM_REMRD | regs[i]);
|
|
@@ -410,10 +411,10 @@ static void inquire_remote_apic(int apicid)
|
|
|
switch (status) {
|
|
|
case APIC_ICR_RR_VALID:
|
|
|
status = apic_read(APIC_RRR);
|
|
|
- printk("%08x\n", status);
|
|
|
+ printk(KERN_CONT "%08x\n", status);
|
|
|
break;
|
|
|
default:
|
|
|
- printk("failed\n");
|
|
|
+ printk(KERN_CONT "failed\n");
|
|
|
}
|
|
|
}
|
|
|
}
|