This patch removes goto definitions from wilc_wlan_firmware_download function.
Goto '_fail_1' feature is error return.
It returns error type directly without result variable replacement as well.
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        blksz = BIT(12);
 
        dma_buffer = kmalloc(blksz, GFP_KERNEL);
-       if (!dma_buffer) {
-               ret = -EIO;
-               goto _fail_1;
-       }
+       if (!dma_buffer)
+               return -EIO;
 
        offset = 0;
        do {
 
        kfree(dma_buffer);
 
-_fail_1:
-
        return (ret < 0) ? ret : 0;
 }