net: tg3: fix redundant check of true expression
authorJean Sacren <sakiwit@gmail.com>
Fri, 8 Oct 2021 06:31:47 +0000 (00:31 -0600)
committerJakub Kicinski <kuba@kernel.org>
Fri, 8 Oct 2021 23:50:07 +0000 (16:50 -0700)
Remove the redundant check of (tg3_asic_rev(tp) == ASIC_REV_5705) after
it is checked to be true.

Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Reviewed-by: Michael Chan <michael.chan@broadcom.com>
Link: https://lore.kernel.org/r/20211008063147.1421-1-sakiwit@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/broadcom/tg3.c

index 5a50ea75094fc411a36c6cd13b1b602cd420bcc3..32d486114a6d09e3184c32ccc6fe9919ee23e711 100644 (file)
@@ -10273,8 +10273,7 @@ static int tg3_reset_hw(struct tg3 *tp, bool reset_phy)
 
        if (tg3_asic_rev(tp) == ASIC_REV_5705 &&
            tg3_chip_rev_id(tp) != CHIPREV_ID_5705_A0) {
-               if (tg3_flag(tp, TSO_CAPABLE) &&
-                   tg3_asic_rev(tp) == ASIC_REV_5705) {
+               if (tg3_flag(tp, TSO_CAPABLE)) {
                        rdmac_mode |= RDMAC_MODE_FIFO_SIZE_128;
                } else if (!(tr32(TG3PCI_PCISTATE) & PCISTATE_BUS_SPEED_HIGH) &&
                           !tg3_flag(tp, IS_5788)) {