mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
hpsa: do not ignore return value of hpsa_register_scsi
add error handling for failure when registering with SCSI subsystem. Reviewed-by: Scott Teel <scott.teel@pmcs.com> Reviewed-by: Kevin Barnett <kevin.barnett@pmcs.com> Reviewed-by: Tomas Henzl <thenzl@redhat.com> Reviewed-by: Hannes Reinecke <hare@Suse.de> Signed-off-by: Don Brace <don.brace@pmcs.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: James Bottomley <JBottomley@Odin.com>
This commit is contained in:
parent
360c73bdde
commit
4a4384ceda
@ -7408,7 +7408,9 @@ reinit_after_soft_reset:
|
||||
h->access.set_intr_mask(h, HPSA_INTR_ON);
|
||||
|
||||
hpsa_hba_inquiry(h);
|
||||
hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
|
||||
rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
|
||||
if (rc)
|
||||
goto clean4;
|
||||
|
||||
/* Monitor the controller for firmware lockups */
|
||||
h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user