From: David Howells Date: Wed, 11 Jul 2012 15:11:20 +0000 (+0100) Subject: MN10300: Fix a missing semicolon X-Git-Tag: v3.5-rc7~33 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=43224b739b0b80d198e44fce7b40e2bc0e357c4e;p=~emulex%2Finfiniband.git MN10300: Fix a missing semicolon The declaration of arch_release_thread_info() needs a semicolon. Signed-off-by: David Howells Signed-off-by: Linus Torvalds --- 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)