diff options
| author | Cyrill Gorcunov <[email protected]> | 2009-02-23 22:57:00 +0300 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-02-24 18:08:39 +0100 |
| commit | b3baaa138cd4223bffb6ca64b873d25cfb1d7c70 (patch) | |
| tree | 1fd8956ac0d4a188ac1ea00708be5d72ed1b6dd2 | |
| 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 <[email protected]>
Cc: [email protected]
Cc: Jeremy Fitzhardinge <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
| -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: ENTRY(native_usergs_sysret64) swapgs sysretq +ENDPROC(native_usergs_sysret64) #endif /* CONFIG_PARAVIRT */ |