diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-07-10 23:34:28 +0530 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-07-23 11:23:21 +0200 |
commit | d2475b8ff81ebeed88d8fcbc22876aced5a0807a (patch) | |
tree | 1e4588affe2255cfb8d78103a11539cc537c6e18 /arch/x86/ia32 | |
parent | 9b710506a03b01a9fdd83962912bc9d8237b82e8 (diff) | |
download | linux-d2475b8ff81ebeed88d8fcbc22876aced5a0807a.tar.bz2 |
x86/ia32/asm: Remove unused argument in macro
Commit 3fe26fa ("x86: get rid of pt_regs argument in sigreturn variants",
from 2012-11-12) changed the body of PTREGSCALL to drop arg, and
updated the callsites; unfortunately, it forgot to update the
macro argument list, leaving an unused argument. Fix this.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Link: http://lkml.kernel.org/r/1373479468-7175-1-git-send-email-artagnon@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S index 474dc1b59f72..4299eb05023c 100644 --- a/arch/x86/ia32/ia32entry.S +++ b/arch/x86/ia32/ia32entry.S @@ -452,7 +452,7 @@ ia32_badsys: CFI_ENDPROC - .macro PTREGSCALL label, func, arg + .macro PTREGSCALL label, func ALIGN GLOBAL(\label) leaq \func(%rip),%rax |