diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-01-30 07:31:23 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:31:23 -0500 |
commit | cae4595764cb3b08f6517e99bac1e3862854b1a1 (patch) | |
tree | 7abb47b9e81fa4bcde3b6a0b98f87c5f88b5722a /arch/x86/power | |
parent | 3e7622f9d7807a0a826d042cafc211cd1a29448c (diff) |
x86: make __{save,restore}_processor_state static
.. allowing to remove their declarations from a global include file
(the symbols don't exist for anything but x86).
Likewise for 64-bits' fix_processor_context(), just that that one was
properly declared in an arch-specific header.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/power')
-rw-r--r-- | arch/x86/power/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/power/cpu.c b/arch/x86/power/cpu.c index 5a98dc35addf..efcf620d1439 100644 --- a/arch/x86/power/cpu.c +++ b/arch/x86/power/cpu.c | |||
@@ -19,7 +19,7 @@ unsigned long saved_context_esp, saved_context_ebp; | |||
19 | unsigned long saved_context_esi, saved_context_edi; | 19 | unsigned long saved_context_esi, saved_context_edi; |
20 | unsigned long saved_context_eflags; | 20 | unsigned long saved_context_eflags; |
21 | 21 | ||
22 | void __save_processor_state(struct saved_context *ctxt) | 22 | static void __save_processor_state(struct saved_context *ctxt) |
23 | { | 23 | { |
24 | mtrr_save_fixed_ranges(NULL); | 24 | mtrr_save_fixed_ranges(NULL); |
25 | kernel_fpu_begin(); | 25 | kernel_fpu_begin(); |
@@ -86,7 +86,7 @@ static void fix_processor_context(void) | |||
86 | 86 | ||
87 | } | 87 | } |
88 | 88 | ||
89 | void __restore_processor_state(struct saved_context *ctxt) | 89 | static void __restore_processor_state(struct saved_context *ctxt) |
90 | { | 90 | { |
91 | /* | 91 | /* |
92 | * control registers | 92 | * control registers |