diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-07-04 06:36:21 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-09 02:18:39 -0400 |
commit | 6f585e01614f38195599c1bc5379d3c9dae6be47 (patch) | |
tree | 4b739ba437e414626cba61cb6eeada0a09d4b808 /arch/x86/kernel/smpboot.c | |
parent | 7b4fd4bb2e7fad2c41afab4683a44ab77f6f35d0 (diff) |
arch/x86/kernel/smpboot.c: fix warning
arch/x86/kernel/smpboot.c: In function 'do_boot_cpu':
arch/x86/kernel/smpboot.c:943: warning: label 'restore_state' defined but not used
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r-- | arch/x86/kernel/smpboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index e1200b202ed7..f35c2d8016ac 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -939,9 +939,9 @@ do_rest: | |||
939 | inquire_remote_apic(apicid); | 939 | inquire_remote_apic(apicid); |
940 | } | 940 | } |
941 | } | 941 | } |
942 | 942 | #ifdef CONFIG_X86_64 | |
943 | restore_state: | 943 | restore_state: |
944 | 944 | #endif | |
945 | if (boot_error) { | 945 | if (boot_error) { |
946 | /* Try to put things back the way they were before ... */ | 946 | /* Try to put things back the way they were before ... */ |
947 | numa_remove_cpu(cpu); /* was set by numa_add_cpu */ | 947 | numa_remove_cpu(cpu); /* was set by numa_add_cpu */ |