lib: remove fastcall from lib/*

[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:
Harvey Harrison 2008-02-08 04:19:55 -08:00 committed by Linus Torvalds
parent 7ad5b3a505
commit 9f741cb8fe
3 changed files with 28 additions and 28 deletions

View file

@ -125,7 +125,7 @@ __rwsem_wake_one_writer(struct rw_semaphore *sem)
/*
* get a read lock on the semaphore
*/
void fastcall __sched __down_read(struct rw_semaphore *sem)
void __sched __down_read(struct rw_semaphore *sem)
{
struct rwsem_waiter waiter;
struct task_struct *tsk;
@ -168,7 +168,7 @@ void fastcall __sched __down_read(struct rw_semaphore *sem)
/*
* trylock for reading -- returns 1 if successful, 0 if contention
*/
int fastcall __down_read_trylock(struct rw_semaphore *sem)
int __down_read_trylock(struct rw_semaphore *sem)
{
unsigned long flags;
int ret = 0;
@ -191,7 +191,7 @@ int fastcall __down_read_trylock(struct rw_semaphore *sem)
* get a write lock on the semaphore
* - we increment the waiting count anyway to indicate an exclusive lock
*/
void fastcall __sched __down_write_nested(struct rw_semaphore *sem, int subclass)
void __sched __down_write_nested(struct rw_semaphore *sem, int subclass)
{
struct rwsem_waiter waiter;
struct task_struct *tsk;
@ -231,7 +231,7 @@ void fastcall __sched __down_write_nested(struct rw_semaphore *sem, int subclass
;
}
void fastcall __sched __down_write(struct rw_semaphore *sem)
void __sched __down_write(struct rw_semaphore *sem)
{
__down_write_nested(sem, 0);
}
@ -239,7 +239,7 @@ void fastcall __sched __down_write(struct rw_semaphore *sem)
/*
* trylock for writing -- returns 1 if successful, 0 if contention
*/
int fastcall __down_write_trylock(struct rw_semaphore *sem)
int __down_write_trylock(struct rw_semaphore *sem)
{
unsigned long flags;
int ret = 0;
@ -260,7 +260,7 @@ int fastcall __down_write_trylock(struct rw_semaphore *sem)
/*
* release a read lock on the semaphore
*/
void fastcall __up_read(struct rw_semaphore *sem)
void __up_read(struct rw_semaphore *sem)
{
unsigned long flags;
@ -275,7 +275,7 @@ void fastcall __up_read(struct rw_semaphore *sem)
/*
* release a write lock on the semaphore
*/
void fastcall __up_write(struct rw_semaphore *sem)
void __up_write(struct rw_semaphore *sem)
{
unsigned long flags;
@ -292,7 +292,7 @@ void fastcall __up_write(struct rw_semaphore *sem)
* downgrade a write lock into a read lock
* - just wake up any readers at the front of the queue
*/
void fastcall __downgrade_write(struct rw_semaphore *sem)
void __downgrade_write(struct rw_semaphore *sem)
{
unsigned long flags;