Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03a980d1 authored by Ajit Khaparde's avatar Ajit Khaparde Committed by David S. Miller
Browse files

be2net: fix for default setting of pause auto-negotiation



This patch fixes the default value of pause auto-negotiation supported
by PCS.

Signed-off-by: default avatarAjit Khaparde <ajitk@serverengines.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a95c2a3b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -319,7 +319,7 @@ be_get_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd)

	be_cmd_get_flow_control(&adapter->ctrl, &ecmd->tx_pause,
		&ecmd->rx_pause);
	ecmd->autoneg = AUTONEG_ENABLE;
	ecmd->autoneg = 0;
}

static int
@@ -328,7 +328,7 @@ be_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd)
	struct be_adapter *adapter = netdev_priv(netdev);
	int status;

	if (ecmd->autoneg != AUTONEG_ENABLE)
	if (ecmd->autoneg != 0)
		return -EINVAL;

	status = be_cmd_set_flow_control(&adapter->ctrl, ecmd->tx_pause,