Archived
14
0
Fork 0

bnx2x: Removing microcode assertion check

This check is unreliable since latest MC can issue warnings on rare occasions
which are not fatal errors

Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eilon Greenstein 2009-02-12 08:36:27 +00:00 committed by David S. Miller
parent f1ef27ef42
commit d3d4f49527
2 changed files with 2 additions and 6 deletions

View file

@ -1009,7 +1009,7 @@ static inline u32 reg_poll(struct bnx2x *bp, u32 reg, u32 expected, int ms,
#define BNX2X_NUM_STATS 42
#define BNX2X_NUM_TESTS 8
#define BNX2X_NUM_TESTS 7
#define BNX2X_MAC_LOOPBACK 0
#define BNX2X_PHY_LOOPBACK 1

View file

@ -8732,8 +8732,7 @@ static const struct {
{ "nvram_test (online)" },
{ "interrupt_test (online)" },
{ "link_test (online)" },
{ "idle check (online)" },
{ "MC errors (online)" }
{ "idle check (online)" }
};
static int bnx2x_self_test_count(struct net_device *dev)
@ -9202,9 +9201,6 @@ static void bnx2x_self_test(struct net_device *dev,
buf[5] = 1;
etest->flags |= ETH_TEST_FL_FAILED;
}
buf[7] = bnx2x_mc_assert(bp);
if (buf[7] != 0)
etest->flags |= ETH_TEST_FL_FAILED;
#ifdef BNX2X_EXTRA_DEBUG
bnx2x_panic_dump(bp);