diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-05 22:10:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-11-05 22:10:04 -0500 |
commit | d1ed6a3ea10aa7b199c434f6ffd1b6761896567a (patch) | |
tree | ad65f11ace691a630885607604e1da0aa16db820 /drivers | |
parent | 59359ff87700f5e742c96a55da9cf0819984c128 (diff) | |
parent | 38c94377a36f70e86665231c9f477e445c806618 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
[NETLABEL]: Fix build failure.
[IPV6]: Give sit driver an appropriate module alias.
[IPV6]: Add ndisc_netdev_notifier unregister.
[NET]: __alloc_pages() failures reported due to fragmentation
[PKTGEN]: TCI endianness fixes
[TG3]: Fix 2nd ifup failure on 5752M.
[NETFILTER] bug: skb->protocol is already net-endian
[NETFILTER] bug: nfulnl_msg_config_mode ->copy_range is 32bit
[NETFILTER] bug: NFULA_CFG_QTHRESH uses 32bit
[IPV6]: Fix ECN bug on big-endian
[IPX]: Annotate and fix IPX checksum
[IPX]: Trivial parts of endianness annotations
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/tg3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 8e398499c045..8f059b7968bd 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -68,8 +68,8 @@ | |||
68 | 68 | ||
69 | #define DRV_MODULE_NAME "tg3" | 69 | #define DRV_MODULE_NAME "tg3" |
70 | #define PFX DRV_MODULE_NAME ": " | 70 | #define PFX DRV_MODULE_NAME ": " |
71 | #define DRV_MODULE_VERSION "3.67" | 71 | #define DRV_MODULE_VERSION "3.68" |
72 | #define DRV_MODULE_RELDATE "October 18, 2006" | 72 | #define DRV_MODULE_RELDATE "November 02, 2006" |
73 | 73 | ||
74 | #define TG3_DEF_MAC_MODE 0 | 74 | #define TG3_DEF_MAC_MODE 0 |
75 | #define TG3_DEF_RX_MODE 0 | 75 | #define TG3_DEF_RX_MODE 0 |
@@ -6014,7 +6014,7 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy) | |||
6014 | tg3_abort_hw(tp, 1); | 6014 | tg3_abort_hw(tp, 1); |
6015 | } | 6015 | } |
6016 | 6016 | ||
6017 | if ((tp->tg3_flags2 & TG3_FLG2_MII_SERDES) && reset_phy) | 6017 | if (reset_phy) |
6018 | tg3_phy_reset(tp); | 6018 | tg3_phy_reset(tp); |
6019 | 6019 | ||
6020 | err = tg3_chip_reset(tp); | 6020 | err = tg3_chip_reset(tp); |
@@ -6574,7 +6574,7 @@ static int tg3_reset_hw(struct tg3 *tp, int reset_phy) | |||
6574 | tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl); | 6574 | tw32(GRC_LOCAL_CTRL, tp->grc_local_ctrl); |
6575 | } | 6575 | } |
6576 | 6576 | ||
6577 | err = tg3_setup_phy(tp, reset_phy); | 6577 | err = tg3_setup_phy(tp, 0); |
6578 | if (err) | 6578 | if (err) |
6579 | return err; | 6579 | return err; |
6580 | 6580 | ||