From: Kris Borer Date: Tue, 4 Aug 2015 12:39:31 +0000 (-0400) Subject: usb: devio: remove assignment from if condition X-Git-Tag: omap-for-v4.3/fixes-merge-window~42^2~53 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=135551ea1abd5038d14825514df7e259fd500033;p=pandora-kernel.git usb: devio: remove assignment from if condition Fix five occurrences of the checkpatch.pl error: ERROR: do not use assignment in if condition The semantic patch that makes this change is: // @@ identifier i; expression E; statement S1, S2; @@ + i = E; if ( - (i = E) + i ) S1 else S2 @@ identifier i; expression E; statement S; constant c; binary operator b; @@ + i = E; if ( - (i = E) + i b c ) S // Signed-off-by: Kris Borer Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed