From: Julia Lawall Date: Fri, 18 Dec 2009 21:16:52 +0000 (+0000) Subject: drivers/net/cxgb3: Use kzalloc for allocating only one thing X-Git-Tag: v2.6.34-rc1~233^2~680 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75ed0a897208c3273fd8dc0f71e1417dba5a049b;p=pandora-kernel.git drivers/net/cxgb3: 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 Acked-by: Divy Le Ray Signed-off-by: David S. Miller --- Reading git-diff-tree failed