From: Dmitry Kravkov Date: Mon, 28 Feb 2011 03:37:12 +0000 (+0000) Subject: bnx2x: Fix ethtool -t link test for MF (non-pmf) devices. X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~4111^2~16 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=633ac3637a1ff84eb85d5659380a41d96c4fdbae;p=mirror_ubuntu-zesty-kernel.git bnx2x: Fix ethtool -t link test for MF (non-pmf) devices. Signed-off-by: Dmitry Kravkov Signed-off-by: Eilon Greenstein Signed-off-by: David S. Miller --- diff --git a/drivers/net/bnx2x/bnx2x_ethtool.c b/drivers/net/bnx2x/bnx2x_ethtool.c index 5b0fe7a35ac8..ef2919987a10 100644 --- a/drivers/net/bnx2x/bnx2x_ethtool.c +++ b/drivers/net/bnx2x/bnx2x_ethtool.c @@ -1932,11 +1932,11 @@ static void bnx2x_self_test(struct net_device *dev, buf[4] = 1; etest->flags |= ETH_TEST_FL_FAILED; } - if (bp->port.pmf) - if (bnx2x_link_test(bp, is_serdes) != 0) { - buf[5] = 1; - etest->flags |= ETH_TEST_FL_FAILED; - } + + if (bnx2x_link_test(bp, is_serdes) != 0) { + buf[5] = 1; + etest->flags |= ETH_TEST_FL_FAILED; + } #ifdef BNX2X_EXTRA_DEBUG bnx2x_panic_dump(bp);