diff options
author | Jacek Luczak <difrost.kernel@gmail.com> | 2008-04-12 11:38:52 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-26 11:35:47 -0400 |
commit | 4c01f23bdbd34e7edeadbaa920c3018307a541d5 (patch) | |
tree | 3110dbee79fa7abd30fe704d8d09c3cf34896c32 /arch | |
parent | 356fa0c6e1ad3d3b01884f08a203bc84d555b880 (diff) |
x86: trampoline_32.S - switch to .cpuinit.data
This patch fixes section mismatch warnings of __cpuinit
setup_trampoline() on 32-bit host.
Signed-off-by: Jacek Luczak <luczak.jacek@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/trampoline_32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/trampoline_32.S b/arch/x86/kernel/trampoline_32.S index 64580679861e..d8ccc3c6552f 100644 --- a/arch/x86/kernel/trampoline_32.S +++ b/arch/x86/kernel/trampoline_32.S | |||
@@ -33,7 +33,7 @@ | |||
33 | 33 | ||
34 | /* We can free up trampoline after bootup if cpu hotplug is not supported. */ | 34 | /* We can free up trampoline after bootup if cpu hotplug is not supported. */ |
35 | #ifndef CONFIG_HOTPLUG_CPU | 35 | #ifndef CONFIG_HOTPLUG_CPU |
36 | .section ".init.data","aw",@progbits | 36 | .section ".cpuinit.data","aw",@progbits |
37 | #else | 37 | #else |
38 | .section .rodata,"a",@progbits | 38 | .section .rodata,"a",@progbits |
39 | #endif | 39 | #endif |