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