From: Julia Lawall Date: Tue, 26 Oct 2010 10:25:31 +0000 (+0200) Subject: USB: gadget: amd5536udc.c: delete double assignment X-Git-Tag: v2.6.38-rc1~465^2~11^2~69 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b455561d28bcfac17d6910e64c616cf684da07f;p=pandora-kernel.git USB: gadget: amd5536udc.c: delete double assignment Delete successive assignments to the same location. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // @@ expression i; @@ *i = ...; i = ...; // Signed-off-by: Julia Lawall Acked-by: Thomas Dahlmann Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed