Skip to content

Commit 517f8eb

Browse files
masneybmartinkpetersen
authored andcommitted
scsi: ufs: host: Convert to dev_err_probe() in ufshcd_pltfrm_init()
Convert ufshcd_pltfrm_init() over to use dev_err_probe() to avoid the following log message on bootup due to an -EPROBE_DEFER return code: ufshcd-qcom 1d84000.ufs: Initialization failed While this line is changed, let's also go ahead and add the error code to the message as well. Signed-off-by: Brian Masney <bmasney@redhat.com> Link: https://lore.kernel.org/r/20230814184352.200531-3-bmasney@redhat.com Reviewed-by: "Bao D. Nguyen" <quic_nguyenb@quicinc.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent 1375232 commit 517f8eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/ufs/host/ufshcd-pltfrm.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,8 @@ int ufshcd_pltfrm_init(struct platform_device *pdev,
375375

376376
err = ufshcd_init(hba, mmio_base, irq);
377377
if (err) {
378-
dev_err(dev, "Initialization failed\n");
378+
dev_err_probe(dev, err, "Initialization failed with error %d\n",
379+
err);
379380
goto dealloc_host;
380381
}
381382

0 commit comments

Comments
 (0)