[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:
committed by
Linus Torvalds
parent
26d89d1eef
commit
23f88fe4bf
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user