mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
gianfar: fix coalescing setup in ethtool support
Parameter order for using mk_ic_value(count, time) was reversed, the patch fixes this. Signed-off-by: Jiajun Wu <b06378@freescale.com> Signed-off-by: Li Yang <leoli@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
72fc939789
commit
accff95c25
1 changed files with 4 additions and 6 deletions
|
@ -366,9 +366,8 @@ static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->rxic = mk_ic_value(
|
priv->rxic = mk_ic_value(cvals->rx_max_coalesced_frames,
|
||||||
gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs),
|
gfar_usecs2ticks(priv, cvals->rx_coalesce_usecs));
|
||||||
cvals->rx_max_coalesced_frames);
|
|
||||||
|
|
||||||
/* Set up tx coalescing */
|
/* Set up tx coalescing */
|
||||||
if ((cvals->tx_coalesce_usecs == 0) ||
|
if ((cvals->tx_coalesce_usecs == 0) ||
|
||||||
|
@ -390,9 +389,8 @@ static int gfar_scoalesce(struct net_device *dev, struct ethtool_coalesce *cvals
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->txic = mk_ic_value(
|
priv->txic = mk_ic_value(cvals->tx_max_coalesced_frames,
|
||||||
gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs),
|
gfar_usecs2ticks(priv, cvals->tx_coalesce_usecs));
|
||||||
cvals->tx_max_coalesced_frames);
|
|
||||||
|
|
||||||
gfar_write(&priv->regs->rxic, 0);
|
gfar_write(&priv->regs->rxic, 0);
|
||||||
if (priv->rxcoalescing)
|
if (priv->rxcoalescing)
|
||||||
|
|
Loading…
Reference in a new issue