aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/semaphore_32.h
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 13:31:17 +0100
committerIngo Molnar <mingo@elte.hu>2008-01-30 13:31:17 +0100
commit341d8854d38fe6e7655f7748babae5c25a51aa70 (patch)
tree38c2baa4db7755e3a8cb359238fbb3073d6e0b7b /include/asm-x86/semaphore_32.h
parentx86: remove all definitions with fastcall (diff)
downloadlinux-dev-341d8854d38fe6e7655f7748babae5c25a51aa70.tar.xz
linux-dev-341d8854d38fe6e7655f7748babae5c25a51aa70.zip
x86: remove fastcall from include/asm-x86
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/semaphore_32.h')
-rw-r--r--include/asm-x86/semaphore_32.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-x86/semaphore_32.h b/include/asm-x86/semaphore_32.h
index 835c1d751a9f..cc826e85323f 100644
--- a/include/asm-x86/semaphore_32.h
+++ b/include/asm-x86/semaphore_32.h
@@ -83,10 +83,10 @@ static inline void init_MUTEX_LOCKED (struct semaphore *sem)
sema_init(sem, 0);
}
-fastcall void __down_failed(void /* special register calling convention */);
-fastcall int __down_failed_interruptible(void /* params in registers */);
-fastcall int __down_failed_trylock(void /* params in registers */);
-fastcall void __up_wakeup(void /* special register calling convention */);
+void __down_failed(void /* special register calling convention */);
+int __down_failed_interruptible(void /* params in registers */);
+int __down_failed_trylock(void /* params in registers */);
+void __up_wakeup(void /* special register calling convention */);
/*
* This is ugly, but we want the default case to fall through.