diff options
author | Hirokazu Takata <takata@linux-m32r.org> | 2005-10-30 15:00:04 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 17:37:15 -0800 |
commit | c978b0179b31600394d5ebdb0940b492ec05500f (patch) | |
tree | 5126e984a9eacbcb25a02a9ef711abda33ceed88 /include | |
parent | baa0b84f104c8e78ddaa8816eb9deac0098429e6 (diff) |
[PATCH] m32r: fix #if warnings
Fix warnings for #if directives.
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-m32r/thread_info.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-m32r/thread_info.h b/include/asm-m32r/thread_info.h index 7a6be7727a92..0f589363f619 100644 --- a/include/asm-m32r/thread_info.h +++ b/include/asm-m32r/thread_info.h @@ -95,7 +95,7 @@ static inline struct thread_info *current_thread_info(void) } /* thread information allocation */ -#if CONFIG_DEBUG_STACK_USAGE +#ifdef CONFIG_DEBUG_STACK_USAGE #define alloc_thread_info(tsk) \ ({ \ struct thread_info *ret; \ |