Skip to content

Commit

Permalink
x86/ia32/asm: Remove unused argument in macro
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ramkumar Ramachandra authored and Ingo Molnar committed Jul 23, 2013
1 parent 9b71050 commit d2475b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/ia32/ia32entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ ia32_badsys:

CFI_ENDPROC

.macro PTREGSCALL label, func, arg
.macro PTREGSCALL label, func
ALIGN
GLOBAL(\label)
leaq \func(%rip),%rax
Expand Down

0 comments on commit d2475b8

Please sign in to comment.