From: Artem Chernyshev Date: Sun, 13 Aug 2023 20:23:36 +0000 (+0300) Subject: scsi: isci: Return result of sas_register_ha() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9a23ed57abbb458e532ae24b7ffdf821f85e1a5d;p=linux.git scsi: isci: Return result of sas_register_ha() To properly manage possible failure of sas_register_ha() in isci_register_sas_ha(), return its result instead of zero Found by Linux Verification Center (linuxtesting.org) with SVACE. Signed-off-by: Artem Chernyshev Link: https://lore.kernel.org/r/20230813202336.240874-1-artem.chernyshev@red-soft.ru Reviewed-by: Artur Paszkiewicz Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c index ac1e04b86d8fe..4f4800edf4f06 100644 --- a/drivers/scsi/isci/init.c +++ b/drivers/scsi/isci/init.c @@ -264,9 +264,7 @@ static int isci_register_sas_ha(struct isci_host *isci_host) sas_ha->strict_wide_ports = 1; - sas_register_ha(sas_ha); - - return 0; + return sas_register_ha(sas_ha); } static void isci_unregister(struct isci_host *isci_host)