mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
scsi: pm80xx: Fix error return in pm8001_pci_probe()
The driver did not return an error in the case where
pm8001_configure_phy_settings() failed.
Use rc to store the return value of pm8001_configure_phy_settings().
Link: https://lore.kernel.org/r/20201205115551.2079471-1-zhangqilong3@huawei.com
Fixes: 279094079a ("[SCSI] pm80xx: Phy settings support for motherboard controller.")
Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
62eebd5247
commit
97031ccffa
@@ -1127,7 +1127,8 @@ static int pm8001_pci_probe(struct pci_dev *pdev,
|
|||||||
|
|
||||||
pm8001_init_sas_add(pm8001_ha);
|
pm8001_init_sas_add(pm8001_ha);
|
||||||
/* phy setting support for motherboard controller */
|
/* phy setting support for motherboard controller */
|
||||||
if (pm8001_configure_phy_settings(pm8001_ha))
|
rc = pm8001_configure_phy_settings(pm8001_ha);
|
||||||
|
if (rc)
|
||||||
goto err_out_shost;
|
goto err_out_shost;
|
||||||
|
|
||||||
pm8001_post_sas_ha_init(shost, chip);
|
pm8001_post_sas_ha_init(shost, chip);
|
||||||
|
|||||||
Reference in New Issue
Block a user