diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2009-02-23 22:57:00 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-02-24 18:08:39 +0100 |
commit | b3baaa138cd4223bffb6ca64b873d25cfb1d7c70 (patch) | |
tree | 1fd8956ac0d4a188ac1ea00708be5d72ed1b6dd2 /arch/x86/kernel | |
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')
-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 fbcf96b295f..7cf8d798042 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S @@ -188,6 +188,7 @@ return_to_handler: ENTRY(native_usergs_sysret64) swapgs sysretq +ENDPROC(native_usergs_sysret64) #endif /* CONFIG_PARAVIRT */ |