From: Chi Pham Date: Sun, 9 Mar 2014 14:07:15 +0000 (+0100) Subject: staging:rtl8188eu: Removed assignments in if statements. X-Git-Tag: v3.15-rc1~139^2~151 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb0a1bb293885075f2cd4e2fefd9e04519782900;p=pandora-kernel.git staging:rtl8188eu: Removed assignments in if statements. Fixed some indentation to silence (some) checkpatch errors. The following coccinelle script found the match: @@ expression E0, E1, E2; statement S0, S1; @@ - if ((E1 = E2) != E) + E1 = E2; + if (E1 != E) S1 else S2 Signed-off-by: Chi Pham Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed