From: Julia Lawall Date: Sat, 19 Dec 2009 07:18:03 +0000 (+0100) Subject: ALSA: Use kzalloc for allocating only one thing X-Git-Tag: v2.6.33-rc2~42^2^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef86f581f7e8b29cb58d7f4e892e1a91b3805124;p=pandora-kernel.git ALSA: Use kzalloc for allocating only one thing Use kzalloc rather than kcalloc(1,...) The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ @@ - kcalloc(1, + kzalloc( ...) // Signed-off-by: Julia Lawall Signed-off-by: Takashi Iwai --- Reading git-diff-tree failed