|
@@ -92,7 +92,7 @@
|
|
|
/* hardware minimum and maximum for a single frame's data payload */
|
|
|
#define TG3_MIN_MTU 60
|
|
|
#define TG3_MAX_MTU(tp) \
|
|
|
- ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) ? 9000 : 1500)
|
|
|
+ ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) ? 9000 : 1500)
|
|
|
|
|
|
/* These numbers seem to be hard coded in the NIC firmware somehow.
|
|
|
* You can't change the ring sizes, but you can change where you place
|
|
@@ -1921,7 +1921,7 @@ out:
|
|
|
if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
|
|
|
/* Cannot do read-modify-write on 5401 */
|
|
|
tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
|
|
|
- } else if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
|
|
|
+ } else if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
|
|
|
u32 phy_reg;
|
|
|
|
|
|
/* Set bit 14 with read-modify-write to preserve other bits */
|
|
@@ -1933,7 +1933,7 @@ out:
|
|
|
/* Set phy register 0x10 bit 0 to high fifo elasticity to support
|
|
|
* jumbo frames transmission.
|
|
|
*/
|
|
|
- if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) {
|
|
|
+ if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
|
|
|
u32 phy_reg;
|
|
|
|
|
|
if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg))
|
|
@@ -6975,7 +6975,7 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy)
|
|
|
/* Program the jumbo buffer descriptor ring control
|
|
|
* blocks on those devices that have them.
|
|
|
*/
|
|
|
- if ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) &&
|
|
|
+ if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
|
|
|
!(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
|
|
|
/* Setup replenish threshold. */
|
|
|
tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
|
|
@@ -12034,7 +12034,7 @@ static int __devinit tg3_get_invariants(struct tg3 *tp)
|
|
|
|
|
|
if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
|
|
|
(tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
|
|
|
- tp->tg3_flags2 |= TG3_FLG2_JUMBO_CAPABLE;
|
|
|
+ tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
|
|
|
|
|
|
pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
|
|
|
&pci_state_reg);
|