Skip to content

Commit

Permalink
x86: change var types in __inquire_remote_apic
Browse files Browse the repository at this point in the history
change some variables' types in __inquire_remote_apic to
match x86_64

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Glauber de Oliveira Costa authored and Ingo Molnar committed Apr 17, 2008
1 parent b552da8 commit 26c6b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/smpboot_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -368,10 +368,10 @@ static void unmap_cpu_to_logical_apicid(int cpu)

static inline void __inquire_remote_apic(int apicid)
{
int i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
char *names[] = { "ID", "VERSION", "SPIV" };
int timeout;
unsigned long status;
u32 status;

printk("Inquiring remote APIC #%d...\n", apicid);

Expand Down

0 comments on commit 26c6b5e

Please sign in to comment.