Commit 56c4da45 authored by Harvey Harrison's avatar Harvey Harrison Committed by Ingo Molnar

core: remove last users of empty FASTCALL macro

FASTCALL is always empty after the x86 removal.
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 6b7d190b
...@@ -397,7 +397,7 @@ void fastcall __put_ioctx(struct kioctx *ctx) ...@@ -397,7 +397,7 @@ void fastcall __put_ioctx(struct kioctx *ctx)
* This prevents races between the aio code path referencing the * This prevents races between the aio code path referencing the
* req (after submitting it) and aio_complete() freeing the req. * req (after submitting it) and aio_complete() freeing the req.
*/ */
static struct kiocb *FASTCALL(__aio_get_req(struct kioctx *ctx)); static struct kiocb *__aio_get_req(struct kioctx *ctx);
static struct kiocb fastcall *__aio_get_req(struct kioctx *ctx) static struct kiocb fastcall *__aio_get_req(struct kioctx *ctx)
{ {
struct kiocb *req = NULL; struct kiocb *req = NULL;
......
...@@ -157,7 +157,7 @@ typedef struct sigaltstack { ...@@ -157,7 +157,7 @@ typedef struct sigaltstack {
#undef __HAVE_ARCH_SIG_BITOPS #undef __HAVE_ARCH_SIG_BITOPS
struct pt_regs; struct pt_regs;
extern int FASTCALL(do_signal(struct pt_regs *regs, sigset_t *oldset)); extern int do_signal(struct pt_regs *regs, sigset_t *oldset);
#define ptrace_signal_deliver(regs, cookie) do { } while (0) #define ptrace_signal_deliver(regs, cookie) do { } while (0)
......
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