aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/tg3.c10
-rw-r--r--drivers/net/tg3.h4
2 files changed, 7 insertions, 7 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c
index 606703cf9618..5e74a19e7c12 100644
--- a/drivers/net/tg3.c
+++ b/drivers/net/tg3.c
@@ -92,7 +92,7 @@
92/* hardware minimum and maximum for a single frame's data payload */ 92/* hardware minimum and maximum for a single frame's data payload */
93#define TG3_MIN_MTU 60 93#define TG3_MIN_MTU 60
94#define TG3_MAX_MTU(tp) \ 94#define TG3_MAX_MTU(tp) \
95 ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) ? 9000 : 1500) 95 ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) ? 9000 : 1500)
96 96
97/* These numbers seem to be hard coded in the NIC firmware somehow. 97/* These numbers seem to be hard coded in the NIC firmware somehow.
98 * You can't change the ring sizes, but you can change where you place 98 * You can't change the ring sizes, but you can change where you place
@@ -1921,7 +1921,7 @@ out:
1921 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) { 1921 if ((tp->phy_id & PHY_ID_MASK) == PHY_ID_BCM5401) {
1922 /* Cannot do read-modify-write on 5401 */ 1922 /* Cannot do read-modify-write on 5401 */
1923 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20); 1923 tg3_writephy(tp, MII_TG3_AUX_CTRL, 0x4c20);
1924 } else if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) { 1924 } else if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
1925 u32 phy_reg; 1925 u32 phy_reg;
1926 1926
1927 /* Set bit 14 with read-modify-write to preserve other bits */ 1927 /* Set bit 14 with read-modify-write to preserve other bits */
@@ -1933,7 +1933,7 @@ out:
1933 /* Set phy register 0x10 bit 0 to high fifo elasticity to support 1933 /* Set phy register 0x10 bit 0 to high fifo elasticity to support
1934 * jumbo frames transmission. 1934 * jumbo frames transmission.
1935 */ 1935 */
1936 if (tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) { 1936 if (tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) {
1937 u32 phy_reg; 1937 u32 phy_reg;
1938 1938
1939 if (!tg3_readphy(tp, MII_TG3_EXT_CTRL, &phy_reg)) 1939 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)
6975 /* Program the jumbo buffer descriptor ring control 6975 /* Program the jumbo buffer descriptor ring control
6976 * blocks on those devices that have them. 6976 * blocks on those devices that have them.
6977 */ 6977 */
6978 if ((tp->tg3_flags2 & TG3_FLG2_JUMBO_CAPABLE) && 6978 if ((tp->tg3_flags & TG3_FLAG_JUMBO_CAPABLE) &&
6979 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) { 6979 !(tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) {
6980 /* Setup replenish threshold. */ 6980 /* Setup replenish threshold. */
6981 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8); 6981 tw32(RCVBDI_JUMBO_THRESH, tp->rx_jumbo_pending / 8);
@@ -12034,7 +12034,7 @@ static int __devinit tg3_get_invariants(struct tg3 *tp)
12034 12034
12035 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) || 12035 if (!(tp->tg3_flags2 & TG3_FLG2_5705_PLUS) ||
12036 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS)) 12036 (tp->tg3_flags2 & TG3_FLG2_5780_CLASS))
12037 tp->tg3_flags2 |= TG3_FLG2_JUMBO_CAPABLE; 12037 tp->tg3_flags |= TG3_FLAG_JUMBO_CAPABLE;
12038 12038
12039 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE, 12039 pci_read_config_dword(tp->pdev, TG3PCI_PCISTATE,
12040 &pci_state_reg); 12040 &pci_state_reg);
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h
index 1c9495df67ce..5efae2c51388 100644
--- a/drivers/net/tg3.h
+++ b/drivers/net/tg3.h
@@ -2601,6 +2601,7 @@ struct tg3 {
2601#define TG3_FLAG_EEPROM_WRITE_PROT 0x00001000 2601#define TG3_FLAG_EEPROM_WRITE_PROT 0x00001000
2602#define TG3_FLAG_NVRAM 0x00002000 2602#define TG3_FLAG_NVRAM 0x00002000
2603#define TG3_FLAG_NVRAM_BUFFERED 0x00004000 2603#define TG3_FLAG_NVRAM_BUFFERED 0x00004000
2604#define TG3_FLAG_SUPPORT_MSI 0x00008000
2604#define TG3_FLAG_PCIX_MODE 0x00020000 2605#define TG3_FLAG_PCIX_MODE 0x00020000
2605#define TG3_FLAG_PCI_HIGH_SPEED 0x00040000 2606#define TG3_FLAG_PCI_HIGH_SPEED 0x00040000
2606#define TG3_FLAG_PCI_32BIT 0x00080000 2607#define TG3_FLAG_PCI_32BIT 0x00080000
@@ -2613,7 +2614,7 @@ struct tg3 {
2613#define TG3_FLAG_CPMU_PRESENT 0x04000000 2614#define TG3_FLAG_CPMU_PRESENT 0x04000000
2614#define TG3_FLAG_40BIT_DMA_BUG 0x08000000 2615#define TG3_FLAG_40BIT_DMA_BUG 0x08000000
2615#define TG3_FLAG_BROKEN_CHECKSUMS 0x10000000 2616#define TG3_FLAG_BROKEN_CHECKSUMS 0x10000000
2616#define TG3_FLAG_SUPPORT_MSI 0x20000000 2617#define TG3_FLAG_JUMBO_CAPABLE 0x20000000
2617#define TG3_FLAG_CHIP_RESETTING 0x40000000 2618#define TG3_FLAG_CHIP_RESETTING 0x40000000
2618#define TG3_FLAG_INIT_COMPLETE 0x80000000 2619#define TG3_FLAG_INIT_COMPLETE 0x80000000
2619 u32 tg3_flags2; 2620 u32 tg3_flags2;
@@ -2639,7 +2640,6 @@ struct tg3 {
2639#define TG3_FLG2_5750_PLUS 0x00080000 2640#define TG3_FLG2_5750_PLUS 0x00080000
2640#define TG3_FLG2_PROTECTED_NVRAM 0x00100000 2641#define TG3_FLG2_PROTECTED_NVRAM 0x00100000
2641#define TG3_FLG2_USING_MSI 0x00200000 2642#define TG3_FLG2_USING_MSI 0x00200000
2642#define TG3_FLG2_JUMBO_CAPABLE 0x00400000
2643#define TG3_FLG2_MII_SERDES 0x00800000 2643#define TG3_FLG2_MII_SERDES 0x00800000
2644#define TG3_FLG2_ANY_SERDES (TG3_FLG2_PHY_SERDES | \ 2644#define TG3_FLG2_ANY_SERDES (TG3_FLG2_PHY_SERDES | \
2645 TG3_FLG2_MII_SERDES) 2645 TG3_FLG2_MII_SERDES)