scsi: hpsa: Remove unused variable transMethod
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Fri, 17 Mar 2023 05:49:40 +0000 (13:49 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 24 Mar 2023 20:52:58 +0000 (16:52 -0400)
The variable transMethod is not used. Delete it.

drivers/scsi/hpsa.c:9478:16: warning: variable 'transMethod' set but not used.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=4554
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/20230317054940.86685-1-jiapeng.chong@linux.alibaba.com
Acked-by: Don Brace <don.brace@microchip.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/hpsa.c

index fec7e17747f769824badebfa06cbe6b267ae4fdf..2f2b46a95102f075a68870210f430d741718f9d2 100644 (file)
@@ -9475,8 +9475,6 @@ static void hpsa_free_performant_mode(struct ctlr_info *h)
 static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
 {
        u32 trans_support;
-       unsigned long transMethod = CFGTBL_Trans_Performant |
-                                       CFGTBL_Trans_use_short_tags;
        int i, rc;
 
        if (hpsa_simple_mode)
@@ -9488,14 +9486,10 @@ static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
 
        /* Check for I/O accelerator mode support */
        if (trans_support & CFGTBL_Trans_io_accel1) {
-               transMethod |= CFGTBL_Trans_io_accel1 |
-                               CFGTBL_Trans_enable_directed_msix;
                rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
                if (rc)
                        return rc;
        } else if (trans_support & CFGTBL_Trans_io_accel2) {
-               transMethod |= CFGTBL_Trans_io_accel2 |
-                               CFGTBL_Trans_enable_directed_msix;
                rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
                if (rc)
                        return rc;