Skip to content

Commit

Permalink
UML: remove remaining FASTCALL uses
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Harvey Harrison authored and Ingo Molnar committed Jan 30, 2008
1 parent c81c6ca commit 332540d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch/um/kernel/ksyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion include/asm-um/linkage.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

/* <linux/linkage.h> will pick sane defaults */
#ifdef CONFIG_GPROF
#undef FASTCALL
#undef fastcall
#endif

Expand Down

0 comments on commit 332540d

Please sign in to comment.