Skip to content

Commit

Permalink
scsi: ufs: handle cleanup correctly on devm_reset_control_get error
Browse files Browse the repository at this point in the history
Move ufshcd_set_variant call in ufs_hisi_init_common to common error
section at end of the function, and then jump to this from the error
checking statements for both devm_reset_control_get and
ufs_hisi_get_resource. This fixes the original commit (63a0618)
which was reverted due to the University of Minnesota problems.

Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Avri Altman <avri.altman@wdc.com>
Cc: Martin K. Petersen <martin.petersen@oracle.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://lore.kernel.org/r/20210503115736.2104747-32-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Phillip Potter authored and Greg Kroah-Hartman committed May 13, 2021
1 parent 4d427b4 commit 2f4a784
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions drivers/scsi/ufs/ufs-hisi.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,17 +467,24 @@ static int ufs_hisi_init_common(struct ufs_hba *hba)
host->hba = hba;
ufshcd_set_variant(hba, host);

host->rst = devm_reset_control_get(dev, "rst");
host->rst = devm_reset_control_get(dev, "rst");
if (IS_ERR(host->rst)) {
dev_err(dev, "%s: failed to get reset control\n", __func__);
err = PTR_ERR(host->rst);
goto error;
}

ufs_hisi_set_pm_lvl(hba);

err = ufs_hisi_get_resource(host);
if (err) {
ufshcd_set_variant(hba, NULL);
return err;
}
if (err)
goto error;

return 0;

error:
ufshcd_set_variant(hba, NULL);
return err;
}

static int ufs_hi3660_init(struct ufs_hba *hba)
Expand Down

0 comments on commit 2f4a784

Please sign in to comment.