This is a patch to the octeon-hcd.c file that
removes dummy label i.e. label followed by return of
void function

Signed-off-by: Nitin Kuppelur <nitinkuppe...@gmail.com>
---
 drivers/staging/octeon-usb/octeon-hcd.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/staging/octeon-usb/octeon-hcd.c 
b/drivers/staging/octeon-usb/octeon-hcd.c
index 8a80982..5fffef2 100644
--- a/drivers/staging/octeon-usb/octeon-hcd.c
+++ b/drivers/staging/octeon-usb/octeon-hcd.c
@@ -2253,9 +2253,8 @@ static void __cvmx_usb_perform_complete(
                        /* Increment to the next location in our packet array */
                        transaction->iso_packets++;
                        transaction->stage = CVMX_USB_STAGE_NON_CONTROL;
-                       goto done;
+                       return;
                }
-       }
 
        /* Remove the transaction from the pipe list */
        list_del(&transaction->node);
@@ -2266,8 +2265,6 @@ static void __cvmx_usb_perform_complete(
                                         transaction->actual_bytes,
                                         transaction->urb);
        kfree(transaction);
-done:
-       return;
 }
 
 
-- 
1.9.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to