usb: misc: usbtest: remove redundant check on retval < 0
authorColin Ian King <colin.king@canonical.com>
Sun, 12 Feb 2017 18:35:18 +0000 (18:35 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Feb 2017 17:32:25 +0000 (09:32 -0800)
The check for retval being less than zero is always true since
retval equal to -EPIPE at that point.  Replace the existing
conditional with just return retval.

Detected with CoverityScan, CID#114349 ("Logically dead code")

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Peter Chen <peter.chen@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/usbtest.c

index 3525626..17c0810 100644 (file)
@@ -992,7 +992,7 @@ static int ch9_postconfig(struct usbtest_dev *dev)
                                dev_err(&iface->dev,
                                                "hs dev qualifier --> %d\n",
                                                retval);
-                               return (retval < 0) ? retval : -EDOM;
+                               return retval;
                        }
                        /* usb2.0 but not high-speed capable; fine */
                } else if (retval != sizeof(struct usb_qualifier_descriptor)) {