Re: [PATCH] iwlagn: Convert kzalloc to kcalloc
From: wwguy <hidden>
Date: 2011-09-15 22:59:21
From: wwguy <hidden>
Date: 2011-09-15 22:59:21
On Thu, 2011-09-15 at 12:47 -0700, Joe Perches wrote:
Convert kzalloc to kcalloc, coalesce multiple lines too. Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Wey-Yi Guy <redacted>
---
IIRC, there is no real different between kcalloc and kzalloc, I think kcalloc will call kzalloc; both zero out the memory before return. Wey