Commit 971f5c40 authored by Nathan Chancellor's avatar Nathan Chancellor Committed by David S. Miller

net: ax88796c: Remove pointless check in ax88796c_open()

Clang warns:

drivers/net/ethernet/asix/ax88796c_main.c:851:24: error: address of
array 'ax_local->phydev->advertising' will always evaluate to 'true'
[-Werror,-Wpointer-bool-conversion]
        if (ax_local->phydev->advertising &&
            ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~ ~~

advertising cannot be NULL here if ax_local is not NULL, which cannot
happen due to the check in ax88796c_probe(). Remove the check.

Link: https://github.com/ClangBuiltLinux/linux/issues/1492Signed-off-by: default avatarNathan Chancellor <nathan@kernel.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3c554881
......@@ -850,11 +850,10 @@ ax88796c_open(struct net_device *ndev)
/* Setup flow-control configuration */
phy_support_asym_pause(ax_local->phydev);
if (ax_local->phydev->advertising &&
(linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
ax_local->phydev->advertising) ||
linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
ax_local->phydev->advertising)))
if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
ax_local->phydev->advertising) ||
linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
ax_local->phydev->advertising))
fc |= AX_FC_ANEG;
fc |= linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment