FROMGIT: scsi: ufs: ufs-mediatek: Add missing of_node_put() in ufs_mtk_probe()

The function is missing a of_node_put() on node. Fix this by adding the
call before returning.

Bug: 191731858
Change-Id: I0fc3115cd736ecdf756a1c5fb71e615affc6ed04
(cherry picked from commit d8b34a32a44078abef55e9fee5b3ddc7755d7c30
git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git for-next)
Link: https://lore.kernel.org/r/1623929522-4389-1-git-send-email-zou_wei@huawei.com
Reported-by: Hulk Robot <hulkci@huawei.com>
Reviewed-by: Stanley Chu <stanley.chu@mediatek.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: Stanley Chu <stanley.chu@mediatek.com>
This commit is contained in:
Zou Wei
2021-06-17 19:32:02 +08:00
committed by Stanley Chu
parent 127a7e28ad
commit e1b73b2abd

View File

@@ -1129,6 +1129,7 @@ out:
if (err)
dev_info(dev, "probe failed %d\n", err);
of_node_put(reset_node);
return err;
}