Commit 88a24cff authored by Will Deacon's avatar Will Deacon Committed by Catalin Marinas

arm64: signal: let the compiler inline compat_get_sigframe

There's no reason to mark compat_get_sigframe inline explicitly, so
remove the annotation and let the compiler decide what's best.
Signed-off-by: default avatarWill Deacon <will.deacon@arm.com>
Signed-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent b64e1c61
...@@ -578,7 +578,7 @@ asmlinkage int compat_sys_rt_sigreturn(struct pt_regs *regs) ...@@ -578,7 +578,7 @@ asmlinkage int compat_sys_rt_sigreturn(struct pt_regs *regs)
return 0; return 0;
} }
static inline void __user *compat_get_sigframe(struct k_sigaction *ka, static void __user *compat_get_sigframe(struct k_sigaction *ka,
struct pt_regs *regs, struct pt_regs *regs,
int framesize) int framesize)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment