提交 088a3dae 编写于 作者: K Kris Borer 提交者: Greg Kroah-Hartman

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: NKris Borer <kborer@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 e3ec4fda
...@@ -671,8 +671,8 @@ static void hub_irq(struct urb *urb) ...@@ -671,8 +671,8 @@ static void hub_irq(struct urb *urb)
if (hub->quiescing) if (hub->quiescing)
return; return;
if ((status = usb_submit_urb(hub->urb, GFP_ATOMIC)) != 0 status = usb_submit_urb(hub->urb, GFP_ATOMIC);
&& status != -ENODEV && status != -EPERM) if (status != 0 && status != -ENODEV && status != -EPERM)
dev_err(hub->intfdev, "resubmit --> %d\n", status); dev_err(hub->intfdev, "resubmit --> %d\n", status);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册