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,9 +578,9 @@ asmlinkage int compat_sys_rt_sigreturn(struct pt_regs *regs)
return 0;
}
static inline void __user *compat_get_sigframe(struct k_sigaction *ka,
struct pt_regs *regs,
int framesize)
static void __user *compat_get_sigframe(struct k_sigaction *ka,
struct pt_regs *regs,
int framesize)
{
compat_ulong_t sp = regs->compat_sp;
void __user *frame;
......
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