From 135551ea1abd5038d14825514df7e259fd500033 Mon Sep 17 00:00:00 2001 From: Kris Borer Date: Tue, 4 Aug 2015 08:39:31 -0400 Subject: [PATCH] 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-format-patch failed