From: Julia Lawall Date: Sat, 19 Dec 2009 07:17:44 +0000 (+0100) Subject: USB: isp1362: Use kzalloc for allocating only one thing X-Git-Tag: v2.6.34-rc1~215^2~170 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ebb7d1b4b98162e332ff43a8739c2c1c690b140;p=pandora-kernel.git USB: isp1362: 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: Greg Kroah-Hartman --- Reading git-diff-tree failed