summaryrefslogtreecommitdiffstats
path: root/fs/open.c
diff options
context:
space:
mode:
authorHarvey Harrison2008-02-08 13:19:52 +0100
committerLinus Torvalds2008-02-08 18:22:31 +0100
commitfc9b52cd8f5f459b88adcf67c47668425ae31a78 (patch)
treec29924eaf60d2e73641bf11fa906a23fa81f46c9 /fs/open.c
parentrd: support XIP (diff)
downloadkernel-qcow2-linux-fc9b52cd8f5f459b88adcf67c47668425ae31a78.tar.gz
kernel-qcow2-linux-fc9b52cd8f5f459b88adcf67c47668425ae31a78.tar.xz
kernel-qcow2-linux-fc9b52cd8f5f459b88adcf67c47668425ae31a78.zip
fs: remove fastcall, it is always empty
[akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/open.c')
-rw-r--r--fs/open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/open.c b/fs/open.c
index 4932b4d1da05..4b389dfbd5c5 100644
--- a/fs/open.c
+++ b/fs/open.c
@@ -991,7 +991,7 @@ static void __put_unused_fd(struct files_struct *files, unsigned int fd)
files->next_fd = fd;
}
-void fastcall put_unused_fd(unsigned int fd)
+void put_unused_fd(unsigned int fd)
{
struct files_struct *files = current->files;
spin_lock(&files->file_lock);
@@ -1014,7 +1014,7 @@ EXPORT_SYMBOL(put_unused_fd);
* will follow.
*/
-void fastcall fd_install(unsigned int fd, struct file * file)
+void fd_install(unsigned int fd, struct file *file)
{
struct files_struct *files = current->files;
struct fdtable *fdt;