scsi: megaraid_sas: Change build_mpt_mfi_pass_thru to return void
authorShivasharan S <shivasharan.srikanteshwara@broadcom.com>
Fri, 10 Feb 2017 08:59:32 +0000 (00:59 -0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 13 Feb 2017 12:26:23 +0000 (07:26 -0500)
Code refactoring to build_mpt_mfi_pass_thru to return void.

Signed-off-by: Kashyap Desai <kashyap.desai@broadcom.com>
Signed-off-by: Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Tomas Henzl <thenzl@redhat.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/megaraid/megaraid_sas_fusion.c

index c0a58dc..bafaf03 100644 (file)
@@ -3229,7 +3229,7 @@ irqreturn_t megasas_isr_fusion(int irq, void *devp)
  * mfi_cmd:                    megasas_cmd pointer
  *
  */
-u8
+void
 build_mpt_mfi_pass_thru(struct megasas_instance *instance,
                        struct megasas_cmd *mfi_cmd)
 {
@@ -3279,8 +3279,6 @@ build_mpt_mfi_pass_thru(struct megasas_instance *instance,
                MPI2_IEEE_SGE_FLAGS_IOCPLBNTA_ADDR;
 
        mpi25_ieee_chain->Length = cpu_to_le32(instance->max_chain_frame_sz);
-
-       return 0;
 }
 
 /**
@@ -3295,11 +3293,7 @@ build_mpt_cmd(struct megasas_instance *instance, struct megasas_cmd *cmd)
        union MEGASAS_REQUEST_DESCRIPTOR_UNION *req_desc = NULL;
        u16 index;
 
-       if (build_mpt_mfi_pass_thru(instance, cmd)) {
-               dev_err(&instance->pdev->dev, "Couldn't build MFI pass thru cmd\n");
-               return NULL;
-       }
-
+       build_mpt_mfi_pass_thru(instance, cmd);
        index = cmd->context.smid;
 
        req_desc = megasas_get_request_descriptor(instance, index - 1);