diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-02-23 14:57:00 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-24 12:08:39 -0500 |
commit | b3baaa138cd4223bffb6ca64b873d25cfb1d7c70 (patch) | |
tree | 1fd8956ac0d4a188ac1ea00708be5d72ed1b6dd2 /arch/x86/kernel/entry_64.S | |
parent | 57e372932cec8eb141cde039aaeaa91b69fceba2 (diff) |
x86: entry_64.S - add missing ENDPROC
native_usergs_sysret64 is described as
extern void native_usergs_sysret64(void)
so lets add ENDPROC here
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: heukelum@fastmail.fm
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/entry_64.S')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index fbcf96b295ff..7cf8d798042e 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -188,6 +188,7 @@ return_to_handler: | |||
188 | ENTRY(native_usergs_sysret64) | 188 | ENTRY(native_usergs_sysret64) |
189 | swapgs | 189 | swapgs |
190 | sysretq | 190 | sysretq |
191 | ENDPROC(native_usergs_sysret64) | ||
191 | #endif /* CONFIG_PARAVIRT */ | 192 | #endif /* CONFIG_PARAVIRT */ |
192 | 193 | ||
193 | 194 | ||