goto done is not required and simple return is fine

Signed-off-by: Devendra Naga <[email protected]>
---
 drivers/staging/wlan-ng/hfa384x_usb.c |    7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c 
b/drivers/staging/wlan-ng/hfa384x_usb.c
index 7843dfd..01a20d5 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -3985,15 +3985,10 @@ static void hfa384x_usbctlx_resptimerfn(unsigned long 
data)
                if (unlocked_usbctlx_cancel_async(hw, ctlx) == 0) {
                        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
                        hfa384x_usbctlxq_run(hw);
-                       goto done;
+                       return;
                }
        }
-
        spin_unlock_irqrestore(&hw->ctlxq.lock, flags);
-
-done:
-       ;
-
 }
 
 /*----------------------------------------------------------------
-- 
1.7.9.5

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to