This patch removes an extra out label in _fcoe_create function where we
return if creation of FCOE interface is failed.
Signed-off-by: Milan P. Gandhi <mgandhi@redhat.com>
Acked-by: Johannes Thumshirn <jth@kernel.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
                fcoe_interface_cleanup(fcoe);
                mutex_unlock(&fcoe_config_mutex);
                fcoe_ctlr_device_delete(ctlr_dev);
-               goto out;
+               return rc;
        }
 
        /* Make this the "master" N_Port */
 out_nodev:
        rtnl_unlock();
        mutex_unlock(&fcoe_config_mutex);
-out:
+
        return rc;
 }