From: Chi Pham Date: Sun, 9 Mar 2014 13:11:11 +0000 (+0100) Subject: staging:vt6656: Removed assignment in if statement. X-Git-Tag: v3.15-rc1~139^2~447^2~18 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9eac685dbc3fe955c4896605cd16e24612494576;p=pandora-kernel.git staging:vt6656: Removed assignment in if statement. The following coccinelle script found the match: @@ expression E0, E1, E2; statement S0; @@ - if ((E1 = E2) == E0) + E1 = E2; + if (E1 == E0) S0 Signed-off-by: Chi Pham Acked-by: Paul E. McKenney Signed-off-by: Peter P Waskiewicz Jr --- Reading git-diff-tree failed