diff options
author | David Howells <dhowells@redhat.com> | 2012-07-11 16:11:20 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-11 11:15:24 -0700 |
commit | 43224b739b0b80d198e44fce7b40e2bc0e357c4e (patch) | |
tree | 5a4712ff6fc8512a341aec6a81e96fbe5c1ca704 | |
parent | 055c9fa8874fa7261eec7a268366565db84af474 (diff) | |
download | linux-3.10-43224b739b0b80d198e44fce7b40e2bc0e357c4e.tar.gz linux-3.10-43224b739b0b80d198e44fce7b40e2bc0e357c4e.tar.bz2 linux-3.10-43224b739b0b80d198e44fce7b40e2bc0e357c4e.zip |
MN10300: Fix a missing semicolon
The declaration of arch_release_thread_info() needs a semicolon.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/mn10300/include/asm/thread_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/include/asm/thread_info.h b/arch/mn10300/include/asm/thread_info.h index 08251d6f6b1..ac519bbd42f 100644 --- a/arch/mn10300/include/asm/thread_info.h +++ b/arch/mn10300/include/asm/thread_info.h @@ -123,7 +123,7 @@ static inline unsigned long current_stack_pointer(void) } #ifndef CONFIG_KGDB -void arch_release_thread_info(struct thread_info *ti) +void arch_release_thread_info(struct thread_info *ti); #endif #define get_thread_info(ti) get_task_struct((ti)->task) #define put_thread_info(ti) put_task_struct((ti)->task) |