diff options
author | Matt Carlson <mcarlson@broadcom.com> | 2008-11-03 19:52:32 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-03 19:52:32 -0500 |
commit | b2b98d4acc58a6f36b731e666c6ebd901cd6a27e (patch) | |
tree | f455300c0b87b99a91e720709e178c7a9a0d1611 | |
parent | bcb37f6cb57e565e7bd342272652c3a50cf88761 (diff) |
tg3: Do not enable APE on bcm5700
With older versions of the NVRAM format, the driver may mistakenly
determine that APE is enabled. Make sure this doesn't happen by
restricting the ENABLE_APE check to devices known to have more
recent NVRAM image formats.
Signed-off-by: Matt Carlson <mcarlson@broadcom.com>
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/tg3.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index 45fcbc3b141d..978d1f0ccb7d 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -11441,8 +11441,11 @@ static void __devinit tg3_get_eeprom_hw_cfg(struct tg3 *tp) | |||
11441 | if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) | 11441 | if (tp->tg3_flags2 & TG3_FLG2_5750_PLUS) |
11442 | tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE; | 11442 | tp->tg3_flags2 |= TG3_FLG2_ASF_NEW_HANDSHAKE; |
11443 | } | 11443 | } |
11444 | if (nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) | 11444 | |
11445 | if ((nic_cfg & NIC_SRAM_DATA_CFG_APE_ENABLE) && | ||
11446 | (tp->tg3_flags2 & TG3_FLG2_5750_PLUS)) | ||
11445 | tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE; | 11447 | tp->tg3_flags3 |= TG3_FLG3_ENABLE_APE; |
11448 | |||
11446 | if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES && | 11449 | if (tp->tg3_flags2 & TG3_FLG2_ANY_SERDES && |
11447 | !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL)) | 11450 | !(nic_cfg & NIC_SRAM_DATA_CFG_FIBER_WOL)) |
11448 | tp->tg3_flags &= ~TG3_FLAG_WOL_CAP; | 11451 | tp->tg3_flags &= ~TG3_FLAG_WOL_CAP; |