From: Julia Lawall Date: Sun, 30 Nov 2014 18:14:12 +0000 (+0100) Subject: target: remove unneeded array X-Git-Tag: omap-for-v3.19/fixes-rc1~19^2~32 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13ba564c956d8584d661aeb6ff7c9fa161b84f12;p=pandora-kernel.git target: remove unneeded array Delete a local array that is only used to be initialized by memset. A semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ identifier x; type T; @@ { ... when any -T x[...]; <+... when != x - memset(x,...); ...+> } // Signed-off-by: Julia Lawall Signed-off-by: Nicholas Bellinger --- Reading git-diff-tree failed