usb: wusbcore: remove unreachable code
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Thu, 7 Apr 2016 15:35:07 +0000 (21:05 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Apr 2016 19:33:15 +0000 (04:33 +0900)
The call to wusb_dev_sysfs_rm() which is just after return will never
be executed. On checking the code, wusb_dev_sysfs_add() is the last one
to be executed so even if that fails we do not need wusb_dev_sysfs_rm()
in the error path.

Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/wusbcore/devconnect.c

index 3f4f5fb..bf95517 100644 (file)
@@ -893,7 +893,6 @@ out:
 error_nodev:
        return;
 
-       wusb_dev_sysfs_rm(wusb_dev);
 error_add_sysfs:
        wusb_dev_bos_rm(wusb_dev);
 error_bos_add: