scsi: smartpqi: Remove NULL pointer check
authorKevin Barnett <kevin.barnett@microchip.com>
Fri, 28 Apr 2023 15:37:03 +0000 (10:37 -0500)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 8 May 2023 11:17:11 +0000 (07:17 -0400)
Remove an unnecessary check for a NULL pointer.  This unnecessary check was
flagged by Coverity.

Reviewed-by: Scott Benesh <scott.benesh@microchip.com>
Reviewed-by: Scott Teel <scott.teel@microchip.com>
Reviewed-by: Mike McGowen <mike.mcgowen@microchip.com>
Signed-off-by: Kevin Barnett <kevin.barnett@microchip.com>
Signed-off-by: Don Brace <don.brace@microchip.com>
Link: https://lore.kernel.org/r/20230428153712.297638-4-don.brace@microchip.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/smartpqi/smartpqi_sas_transport.c

index 13e8c53..52dbe37 100644 (file)
@@ -92,25 +92,23 @@ static int pqi_sas_port_add_rphy(struct pqi_sas_port *pqi_sas_port,
 
        identify = &rphy->identify;
        identify->sas_address = pqi_sas_port->sas_address;
+       identify->phy_identifier = pqi_sas_port->device->phy_id;
 
        identify->initiator_port_protocols = SAS_PROTOCOL_ALL;
        identify->target_port_protocols = SAS_PROTOCOL_STP;
 
-       if (pqi_sas_port->device) {
-               identify->phy_identifier = pqi_sas_port->device->phy_id;
-               switch (pqi_sas_port->device->device_type) {
-               case SA_DEVICE_TYPE_SAS:
-               case SA_DEVICE_TYPE_SES:
-               case SA_DEVICE_TYPE_NVME:
-                       identify->target_port_protocols = SAS_PROTOCOL_SSP;
-                       break;
-               case SA_DEVICE_TYPE_EXPANDER_SMP:
-                       identify->target_port_protocols = SAS_PROTOCOL_SMP;
-                       break;
-               case SA_DEVICE_TYPE_SATA:
-               default:
-                       break;
-               }
+       switch (pqi_sas_port->device->device_type) {
+       case SA_DEVICE_TYPE_SAS:
+       case SA_DEVICE_TYPE_SES:
+       case SA_DEVICE_TYPE_NVME:
+               identify->target_port_protocols = SAS_PROTOCOL_SSP;
+               break;
+       case SA_DEVICE_TYPE_EXPANDER_SMP:
+               identify->target_port_protocols = SAS_PROTOCOL_SMP;
+               break;
+       case SA_DEVICE_TYPE_SATA:
+       default:
+               break;
        }
 
        return sas_rphy_add(rphy);