aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 07:31:14 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:14 -0500
commit332540d5fe7f3370bb860090e4b906340a2e2afb (patch)
tree1a94366464165b53c24fa015e6222b34eca626d7
parentc81c6ca45a69478c7877b729af1942d2b80ef582 (diff)
UML: remove remaining FASTCALL uses
With the x86 removal, FASTCALL is always empty now. 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>
-rw-r--r--arch/um/kernel/ksyms.c4
-rw-r--r--include/asm-um/linkage.h1
2 files changed, 2 insertions, 3 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);
71 71
72/* required for SMP */ 72/* required for SMP */
73 73
74extern void FASTCALL( __write_lock_failed(rwlock_t *rw)); 74extern void __write_lock_failed(rwlock_t *rw);
75EXPORT_SYMBOL(__write_lock_failed); 75EXPORT_SYMBOL(__write_lock_failed);
76 76
77extern void FASTCALL( __read_lock_failed(rwlock_t *rw)); 77extern void __read_lock_failed(rwlock_t *rw);
78EXPORT_SYMBOL(__read_lock_failed); 78EXPORT_SYMBOL(__read_lock_failed);
79 79
80#endif 80#endif
diff --git a/include/asm-um/linkage.h b/include/asm-um/linkage.h
index 78b862472b36..cdb3024a699a 100644
--- a/include/asm-um/linkage.h
+++ b/include/asm-um/linkage.h
@@ -6,7 +6,6 @@
6 6
7/* <linux/linkage.h> will pick sane defaults */ 7/* <linux/linkage.h> will pick sane defaults */
8#ifdef CONFIG_GPROF 8#ifdef CONFIG_GPROF
9#undef FASTCALL
10#undef fastcall 9#undef fastcall
11#endif 10#endif
12 11