include/asm-m32r/thread_info.h: kmalloc + memset conversion to kzalloc

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Mariusz Kozlowski 2007-10-16 01:26:35 -07:00 committed by Linus Torvalds
parent b2b5d37d7e
commit 3165c0d16a
1 changed files with 2 additions and 3 deletions

View File

@ -100,9 +100,8 @@ static inline struct thread_info *current_thread_info(void)
({ \
struct thread_info *ret; \
\
ret = kmalloc(THREAD_SIZE, GFP_KERNEL); \
if (ret) \
memset(ret, 0, THREAD_SIZE); \
ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \
\
ret; \
})
#else