[PATCH] cris: "extern inline" -> "static inline"

"extern inline" doesn't make much sense.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Adrian Bunk
2005-11-07 00:58:44 -08:00
committed by Linus Torvalds
parent 5f9c3cbcd5
commit d9b5444eeb
38 changed files with 135 additions and 135 deletions

View File

@@ -5,7 +5,7 @@
struct task_struct;
extern inline struct task_struct * get_current(void)
static inline struct task_struct * get_current(void)
{
return current_thread_info()->task;
}