Commit 56c4da454de1264e381256f658f61b9ef690dd21

Authored by Harvey Harrison
Committed by Ingo Molnar
1 parent 6b7d190b14

core: remove last users of empty FASTCALL macro

FASTCALL is always empty after the x86 removal.

Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -397,7 +397,7 @@
397 397 * This prevents races between the aio code path referencing the
398 398 * req (after submitting it) and aio_complete() freeing the req.
399 399 */
400   -static struct kiocb *FASTCALL(__aio_get_req(struct kioctx *ctx));
  400 +static struct kiocb *__aio_get_req(struct kioctx *ctx);
401 401 static struct kiocb fastcall *__aio_get_req(struct kioctx *ctx)
402 402 {
403 403 struct kiocb *req = NULL;
include/asm-m32r/signal.h
... ... @@ -157,7 +157,7 @@
157 157 #undef __HAVE_ARCH_SIG_BITOPS
158 158  
159 159 struct pt_regs;
160   -extern int FASTCALL(do_signal(struct pt_regs *regs, sigset_t *oldset));
  160 +extern int do_signal(struct pt_regs *regs, sigset_t *oldset);
161 161  
162 162 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
163 163