diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2020-07-08 21:28:07 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-07-09 11:18:30 +0200 |
commit | bd87e6f6610aa96fde01ee6653e162213f7ec836 (patch) | |
tree | 9a72155a35b9298d0d1b66f3821776170a60e961 | |
parent | 006e1ced516d2bfd9db63a32b5dba3c2abf43b04 (diff) |
x86/entry/common: Make prepare_exit_to_usermode() static
No users outside this file anymore.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Andy Lutomirski <luto@kernel.org>
Link: https://lkml.kernel.org/r/20200708192934.301116609@linutronix.de
-rw-r--r-- | arch/x86/entry/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/entry/common.c b/arch/x86/entry/common.c index ea7b515e3bc2..f09288431f28 100644 --- a/arch/x86/entry/common.c +++ b/arch/x86/entry/common.c @@ -294,7 +294,7 @@ static void __prepare_exit_to_usermode(struct pt_regs *regs) #endif } -__visible noinstr void prepare_exit_to_usermode(struct pt_regs *regs) +static noinstr void prepare_exit_to_usermode(struct pt_regs *regs) { instrumentation_begin(); __prepare_exit_to_usermode(regs); |