ice: minor: rename goto labels from err to unroll

Clean up goto labels after previous commit, to conform to single naming
scheme in ice_probe() and ice_init_dev().

Reviewed-by: Marcin Szycik <marcin.szycik@linux.intel.com>
Signed-off-by: Przemek Kitszel <przemyslaw.kitszel@intel.com>
Reviewed-by: Kalesh AP <kalesh-anakkur.purayil@broadcom.com>
Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> (A Contingent worker at Intel)
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
Przemek Kitszel 2024-10-02 13:50:23 +02:00 committed by Tony Nguyen
parent 4d3f59bfa2
commit 5d5d9c2c0f

View File

@ -4799,7 +4799,7 @@ int ice_init_dev(struct ice_pf *pf)
if (err) {
dev_err(dev, "ice_init_interrupt_scheme failed: %d\n", err);
err = -EIO;
goto err_init_interrupt_scheme;
goto unroll_pf_init;
}
/* In case of MSIX we are going to setup the misc vector right here
@ -4810,14 +4810,14 @@ int ice_init_dev(struct ice_pf *pf)
err = ice_req_irq_msix_misc(pf);
if (err) {
dev_err(dev, "setup of misc vector failed: %d\n", err);
goto err_req_irq_msix_misc;
goto unroll_irq_scheme_init;
}
return 0;
err_req_irq_msix_misc:
unroll_irq_scheme_init:
ice_clear_interrupt_scheme(pf);
err_init_interrupt_scheme:
unroll_pf_init:
ice_deinit_pf(pf);
return err;
}
@ -5324,18 +5324,18 @@ ice_probe(struct pci_dev *pdev, const struct pci_device_id __always_unused *ent)
devl_lock(priv_to_devlink(pf));
err = ice_load(pf);
if (err)
goto err_load;
goto unroll_init;
err = ice_init_devlink(pf);
if (err)
goto err_init_devlink;
goto unroll_load;
devl_unlock(priv_to_devlink(pf));
return 0;
err_init_devlink:
unroll_load:
ice_unload(pf);
err_load:
unroll_init:
devl_unlock(priv_to_devlink(pf));
ice_deinit(pf);
unroll_hw_init: