diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-08 07:19:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:31 -0500 |
commit | 7ad5b3a505e68cfdc342933d6e0fc0eaa5e0a4f7 (patch) | |
tree | 6715ffd8df509d3d53dea581bb97418a21bc7cbc /kernel/exit.c | |
parent | fc9b52cd8f5f459b88adcf67c47668425ae31a78 (diff) |
kernel: remove fastcall in kernel/*
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/exit.c')
-rw-r--r-- | kernel/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/exit.c b/kernel/exit.c index 81345ba4b253..3b893e78ce61 100644 --- a/kernel/exit.c +++ b/kernel/exit.c | |||
@@ -458,7 +458,7 @@ struct files_struct *get_files_struct(struct task_struct *task) | |||
458 | return files; | 458 | return files; |
459 | } | 459 | } |
460 | 460 | ||
461 | void fastcall put_files_struct(struct files_struct *files) | 461 | void put_files_struct(struct files_struct *files) |
462 | { | 462 | { |
463 | struct fdtable *fdt; | 463 | struct fdtable *fdt; |
464 | 464 | ||
@@ -887,7 +887,7 @@ static inline void exit_child_reaper(struct task_struct *tsk) | |||
887 | zap_pid_ns_processes(tsk->nsproxy->pid_ns); | 887 | zap_pid_ns_processes(tsk->nsproxy->pid_ns); |
888 | } | 888 | } |
889 | 889 | ||
890 | fastcall NORET_TYPE void do_exit(long code) | 890 | NORET_TYPE void do_exit(long code) |
891 | { | 891 | { |
892 | struct task_struct *tsk = current; | 892 | struct task_struct *tsk = current; |
893 | int group_dead; | 893 | int group_dead; |