diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-11-07 03:58:44 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:30 -0500 |
commit | d9b5444eeb3a663ca4a625878b1421c9e9b18e8b (patch) | |
tree | 6cc32711116977944043c54e0c196c75358916be /include/asm-cris/processor.h | |
parent | 5f9c3cbcd5d41be597aef9c0ff64ebfc8a91cd6f (diff) |
[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>
Diffstat (limited to 'include/asm-cris/processor.h')
-rw-r--r-- | include/asm-cris/processor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-cris/processor.h b/include/asm-cris/processor.h index 0dc218117bd8..e8b2abb2ae59 100644 --- a/include/asm-cris/processor.h +++ b/include/asm-cris/processor.h | |||
@@ -45,7 +45,7 @@ | |||
45 | 45 | ||
46 | #define current_regs() user_regs(current->thread_info) | 46 | #define current_regs() user_regs(current->thread_info) |
47 | 47 | ||
48 | extern inline void prepare_to_copy(struct task_struct *tsk) | 48 | static inline void prepare_to_copy(struct task_struct *tsk) |
49 | { | 49 | { |
50 | } | 50 | } |
51 | 51 | ||
@@ -58,7 +58,7 @@ unsigned long get_wchan(struct task_struct *p); | |||
58 | extern unsigned long thread_saved_pc(struct task_struct *tsk); | 58 | extern unsigned long thread_saved_pc(struct task_struct *tsk); |
59 | 59 | ||
60 | /* Free all resources held by a thread. */ | 60 | /* Free all resources held by a thread. */ |
61 | extern inline void release_thread(struct task_struct *dead_task) | 61 | static inline void release_thread(struct task_struct *dead_task) |
62 | { | 62 | { |
63 | /* Nothing needs to be done. */ | 63 | /* Nothing needs to be done. */ |
64 | } | 64 | } |