net/mlx4_en: Coding style cleanup in mlx4_en_dcbnl_ieee_setpfc()
Fix some coding style issues in this function. Signed-off-by: Amir Vadai <amirv@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f6ae5acff5
commit
5c044e6368
1 changed files with 9 additions and 6 deletions
|
@ -160,6 +160,7 @@ static int mlx4_en_dcbnl_ieee_setpfc(struct net_device *dev,
|
||||||
struct ieee_pfc *pfc)
|
struct ieee_pfc *pfc)
|
||||||
{
|
{
|
||||||
struct mlx4_en_priv *priv = netdev_priv(dev);
|
struct mlx4_en_priv *priv = netdev_priv(dev);
|
||||||
|
struct mlx4_en_port_profile *prof = priv->prof;
|
||||||
struct mlx4_en_dev *mdev = priv->mdev;
|
struct mlx4_en_dev *mdev = priv->mdev;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
@ -169,15 +170,17 @@ static int mlx4_en_dcbnl_ieee_setpfc(struct net_device *dev,
|
||||||
pfc->mbc,
|
pfc->mbc,
|
||||||
pfc->delay);
|
pfc->delay);
|
||||||
|
|
||||||
priv->prof->rx_pause = priv->prof->tx_pause = !!pfc->pfc_en;
|
prof->rx_pause = !!pfc->pfc_en;
|
||||||
priv->prof->rx_ppp = priv->prof->tx_ppp = pfc->pfc_en;
|
prof->tx_pause = !!pfc->pfc_en;
|
||||||
|
prof->rx_ppp = pfc->pfc_en;
|
||||||
|
prof->tx_ppp = pfc->pfc_en;
|
||||||
|
|
||||||
err = mlx4_SET_PORT_general(mdev->dev, priv->port,
|
err = mlx4_SET_PORT_general(mdev->dev, priv->port,
|
||||||
priv->rx_skb_size + ETH_FCS_LEN,
|
priv->rx_skb_size + ETH_FCS_LEN,
|
||||||
priv->prof->tx_pause,
|
prof->tx_pause,
|
||||||
priv->prof->tx_ppp,
|
prof->tx_ppp,
|
||||||
priv->prof->rx_pause,
|
prof->rx_pause,
|
||||||
priv->prof->rx_ppp);
|
prof->rx_ppp);
|
||||||
if (err)
|
if (err)
|
||||||
en_err(priv, "Failed setting pause params\n");
|
en_err(priv, "Failed setting pause params\n");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue