aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/tg3.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 978ba5d8c253..1c680ff51013 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -7536,6 +7536,9 @@ static void tg3_rings_reset(struct tg3 *tp)
7536 /* Disable all transmit rings but the first. */ 7536 /* Disable all transmit rings but the first. */
7537 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS)) 7537 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS))
7538 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16; 7538 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 16;
7539 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 ||
7540 GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5719)
7541 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 4;
7539 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765) 7542 else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
7540 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2; 7543 limit = NIC_SRAM_SEND_RCB + TG3_BDINFO_SIZE * 2;
7541 else 7544 else