[PATCH] include/asm-v850/ "extern inline" -> "static inline"

"extern inline" doesn't make much sense.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Miles Bader <miles@gnu.org>
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:59:00 -08:00
committed by Linus Torvalds
parent 26d89d1eef
commit 23f88fe4bf
10 changed files with 21 additions and 21 deletions

View File

@@ -59,7 +59,7 @@ struct thread_struct {
/* Do necessary setup to start up a newly executed thread. */
extern inline void start_thread (struct pt_regs *regs,
static inline void start_thread (struct pt_regs *regs,
unsigned long pc, unsigned long usp)
{
regs->pc = pc;
@@ -68,7 +68,7 @@ extern inline void start_thread (struct pt_regs *regs,
}
/* Free all resources held by a thread. */
extern inline void release_thread (struct task_struct *dead_task)
static inline void release_thread (struct task_struct *dead_task)
{
}