From: Leo Kim <leo....@atmel.com>

This patch remove goto feature from linux_wlan_firmware_download function.
Goto feature is return result.
So, remove goto functions and it was replaced with the return value directly.

Signed-off-by: Leo Kim <leo....@atmel.com>
Signed-off-by: Glen Lee <glen....@atmel.com>
---
 drivers/staging/wilc1000/linux_wlan.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_wlan.c 
b/drivers/staging/wilc1000/linux_wlan.c
index f091a3c..aaa938f 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -558,14 +558,13 @@ static int linux_wlan_firmware_download(struct net_device 
*dev)
 
        if (!wilc->firmware) {
                PRINT_ER("Firmware buffer is NULL\n");
-               ret = -ENOBUFS;
-               goto _FAIL_;
+               return -ENOBUFS;
        }
        PRINT_D(INIT_DBG, "Downloading Firmware ...\n");
        ret = wilc_wlan_firmware_download(dev, wilc->firmware->data,
                                          wilc->firmware->size);
        if (ret < 0)
-               goto _FAIL_;
+               return ret;
 
        PRINT_D(INIT_DBG, "Freeing FW buffer ...\n");
        PRINT_D(INIT_DBG, "Releasing firmware\n");
@@ -573,7 +572,6 @@ static int linux_wlan_firmware_download(struct net_device 
*dev)
 
        PRINT_D(INIT_DBG, "Download Succeeded\n");
 
-_FAIL_:
        return ret;
 }
 
-- 
1.9.1

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

Reply via email to