diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-22 20:02:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-22 20:02:38 -0400 |
commit | 0a613b647bac0cfab7b7d81f11271883209a70ef (patch) | |
tree | e08bc77eb987ef8f4560c0c46cd4ed54784b23c0 /arch/x86/kernel/smpboot.c | |
parent | eb47418dc56baaca33d270a868d8ddaa81150952 (diff) | |
parent | a6c23905ff0d6bbddf590ef0838489ee0f6c74ac (diff) |
Merge branch 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86, smpboot: Mark the names[] array in __inquire_remote_apic() as const
x86: Convert vmalloc()+memset() to vzalloc()
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index 9fd3137230d4..9f548cb4a958 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -438,7 +438,7 @@ static void impress_friends(void) | |||
438 | void __inquire_remote_apic(int apicid) | 438 | void __inquire_remote_apic(int apicid) |
439 | { | 439 | { |
440 | unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 }; | 440 | unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 }; |
441 | char *names[] = { "ID", "VERSION", "SPIV" }; | 441 | const char * const names[] = { "ID", "VERSION", "SPIV" }; |
442 | int timeout; | 442 | int timeout; |
443 | u32 status; | 443 | u32 status; |
444 | 444 | ||