summaryrefslogtreecommitdiff
path: root/lib/semaphore-sleepers.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-02-08 04:19:55 -0800
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 09:22:31 -0800
commit9f741cb8fecef923cce1dff820ac6aa78c12d136 (patch)
treea033810f71f1b98f5ba1d1949230178ca505a1bf /lib/semaphore-sleepers.c
parent7ad5b3a505e68cfdc342933d6e0fc0eaa5e0a4f7 (diff)
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>
Diffstat (limited to 'lib/semaphore-sleepers.c')
-rw-r--r--lib/semaphore-sleepers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/semaphore-sleepers.c b/lib/semaphore-sleepers.c
index 12818052386..0198782cdac 100644
--- a/lib/semaphore-sleepers.c
+++ b/lib/semaphore-sleepers.c
@@ -48,12 +48,12 @@
* we cannot lose wakeup events.
*/
-fastcall void __up(struct semaphore *sem)
+void __up(struct semaphore *sem)
{
wake_up(&sem->wait);
}
-fastcall void __sched __down(struct semaphore * sem)
+void __sched __down(struct semaphore *sem)
{
struct task_struct *tsk = current;
DECLARE_WAITQUEUE(wait, tsk);
@@ -90,7 +90,7 @@ fastcall void __sched __down(struct semaphore * sem)
tsk->state = TASK_RUNNING;
}
-fastcall int __sched __down_interruptible(struct semaphore * sem)
+int __sched __down_interruptible(struct semaphore *sem)
{
int retval = 0;
struct task_struct *tsk = current;
@@ -153,7 +153,7 @@ fastcall int __sched __down_interruptible(struct semaphore * sem)
* single "cmpxchg" without failure cases,
* but then it wouldn't work on a 386.
*/
-fastcall int __down_trylock(struct semaphore * sem)
+int __down_trylock(struct semaphore *sem)
{
int sleepers;
unsigned long flags;