diff options
author | Harvey Harrison <[email protected]> | 2008-01-30 13:31:14 +0100 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2008-01-30 13:31:14 +0100 |
commit | 332540d5fe7f3370bb860090e4b906340a2e2afb (patch) | |
tree | 1a94366464165b53c24fa015e6222b34eca626d7 /arch/um/kernel/ksyms.c | |
parent | c81c6ca45a69478c7877b729af1942d2b80ef582 (diff) |
UML: remove remaining FASTCALL uses
With the x86 removal, FASTCALL is always empty now.
Signed-off-by: Harvey Harrison <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Diffstat (limited to 'arch/um/kernel/ksyms.c')
-rw-r--r-- | arch/um/kernel/ksyms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/kernel/ksyms.c b/arch/um/kernel/ksyms.c index 1b388b41d95d..7c7142ba3bd7 100644 --- a/arch/um/kernel/ksyms.c +++ b/arch/um/kernel/ksyms.c @@ -71,10 +71,10 @@ EXPORT_SYMBOL(dump_thread); /* required for SMP */ -extern void FASTCALL( __write_lock_failed(rwlock_t *rw)); +extern void __write_lock_failed(rwlock_t *rw); EXPORT_SYMBOL(__write_lock_failed); -extern void FASTCALL( __read_lock_failed(rwlock_t *rw)); +extern void __read_lock_failed(rwlock_t *rw); EXPORT_SYMBOL(__read_lock_failed); #endif |