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>
This commit is contained in:

committed by
Linus Torvalds

parent
75acb9cd2e
commit
fc9b52cd8f
@@ -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;
|
||||
|
Reference in New Issue
Block a user