Kris Borer 088a3daead usb: hub: remove assignment from if condition
Fix one occurrence of the checkpatch.pl error:

ERROR: do not use assignment in if condition

The semantic patch that makes this change is:

// <smpl>
@@
identifier i;
expression E, E2, E3;
statement S1, S2;
binary operator b;
@@

+ i = E;
  if (
- (i = E)
+ i
  b
  ... && E2 && E3 ) S1 else S2
// </smpl>

Signed-off-by: Kris Borer <kborer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-08-14 16:54:02 -07:00
..
2014-08-01 15:47:05 -07:00
2015-08-08 15:17:17 -07:00
2015-07-22 14:55:21 -07:00
2015-07-27 11:15:16 -07:00
2014-09-23 22:33:19 -07:00
2015-05-13 12:04:55 -05:00