usb: isp1760: Fix meaningless check in isp1763_run()
authorTong Tiangen <tongtiangen@huawei.com>
Fri, 11 Jun 2021 01:40:55 +0000 (09:40 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Jun 2021 13:40:58 +0000 (15:40 +0200)
Remove attribution to retval before check, which make it completely
meaningless, and does't check what it was supposed: the return
value of the timed function to set up configuration flag.

Fixes: 60d789f3bfbb ("usb: isp1760: add support for isp1763")
Tested-by: Rui Miguel Silva <rui.silva@linaro.org>
Reviewed-by: Rui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: Tong Tiangen <tongtiangen@huawei.com>
Link: https://lore.kernel.org/r/20210611014055.68551-1-tongtiangen@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/isp1760/isp1760-hcd.c

index 016a54e..27168b4 100644 (file)
@@ -1648,7 +1648,6 @@ static int isp1763_run(struct usb_hcd *hcd)
        down_write(&ehci_cf_port_reset_rwsem);
        retval = isp1760_hcd_set_and_wait(hcd, FLAG_CF, 250 * 1000);
        up_write(&ehci_cf_port_reset_rwsem);
-       retval = 0;
        if (retval)
                return retval;