From: Julia Lawall Date: Thu, 4 Aug 2011 10:29:33 +0000 (-0300) Subject: [media] drivers/media/video/hexium_gemini.c: delete useless initialization X-Git-Tag: v3.2-rc1~112^2~283 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f00fd919ef71b3d6d52dbfa7ce827679d92af713;p=pandora-kernel.git [media] drivers/media/video/hexium_gemini.c: delete useless initialization Delete nontrivial initialization that is immediately overwritten by the result of an allocation function. The semantic match that makes this change is as follows: // @@ type T; identifier i; expression e; @@ ( T i = \(0\|NULL\|ERR_PTR(...)\); | -T i = e; +T i; ) ... when != i i = \(kzalloc\|kcalloc\|kmalloc\)(...); // Signed-off-by: Julia Lawall Acked-by: Jean Delvare Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed