projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
055c9fa
)
MN10300: Fix a missing semicolon
author
David Howells
<
[email protected]
>
Wed, 11 Jul 2012 15:11:20 +0000
(16:11 +0100)
committer
Linus Torvalds
<
[email protected]
>
Wed, 11 Jul 2012 18:15:24 +0000
(11:15 -0700)
The declaration of arch_release_thread_info() needs a semicolon.
Signed-off-by: David Howells <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/mn10300/include/asm/thread_info.h
patch
|
blob
|
history
diff --git
a/arch/mn10300/include/asm/thread_info.h
b/arch/mn10300/include/asm/thread_info.h
index 08251d6f6b11015b5d8d265cba4fe88fc70e0f1c..ac519bbd42ffe32693a02d3f88ac5dbd21d426ff 100644
(file)
--- 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)