From: Kangjie Lu Date: Fri, 15 Mar 2019 07:11:56 +0000 (-0500) Subject: scsi: ufs: fix a missing check of devm_reset_control_get X-Git-Tag: Ubuntu-5.10.0-12.13~5439^2~232 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=63a06181d7ce169d09843645c50fea1901bc9f0a;p=mirror_ubuntu-hirsute-kernel.git scsi: ufs: fix a missing check of devm_reset_control_get devm_reset_control_get could fail, so the fix checks its return value and passes the error code upstream in case it fails. Signed-off-by: Kangjie Lu Acked-by: Avri Altman Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/ufs/ufs-hisi.c b/drivers/scsi/ufs/ufs-hisi.c index 0e855b5afe82..2f592df921d9 100644 --- a/drivers/scsi/ufs/ufs-hisi.c +++ b/drivers/scsi/ufs/ufs-hisi.c @@ -587,6 +587,10 @@ static int ufs_hisi_init_common(struct ufs_hba *hba) ufshcd_set_variant(hba, host); host->rst = devm_reset_control_get(dev, "rst"); + if (IS_ERR(host->rst)) { + dev_err(dev, "%s: failed to get reset control\n", __func__); + return PTR_ERR(host->rst); + } ufs_hisi_set_pm_lvl(hba);