Commit fb1633d5 authored by Vinson Lee's avatar Vinson Lee Committed by Martin K. Petersen

scsi: megaraid_sas: Do not log an error if FW successfully initializes.

Fixes: 2d2c2331 ("scsi: megaraid_sas: modified few prints in OCR and IOC INIT path")
Signed-off-by: default avatarVinson Lee <vlee@freedesktop.org>
Acked-by: default avatarShivasharan S <shivasharan.srikanteshwara@broadcom.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 6667e6d9
......@@ -1124,12 +1124,12 @@ megasas_ioc_init_fusion(struct megasas_instance *instance)
goto fail_fw_init;
}
ret = 0;
return 0;
fail_fw_init:
dev_err(&instance->pdev->dev,
"Init cmd return status %s for SCSI host %d\n",
ret ? "FAILED" : "SUCCESS", instance->host->host_no);
"Init cmd return status FAILED for SCSI host %d\n",
instance->host->host_no);
return ret;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment