aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/ipg.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/ipg.c b/drivers/net/ipg.c
index 5e5d9b527ed1..2fdbde772e90 100644
--- a/drivers/net/ipg.c
+++ b/drivers/net/ipg.c
@@ -1900,8 +1900,13 @@ static int ipg_nic_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
1900 1900
1901 /* Specify the TFC field within the TFD. */ 1901 /* Specify the TFC field within the TFD. */
1902 txfd->tfc |= cpu_to_le64(IPG_TFC_WORDALIGNDISABLED | 1902 txfd->tfc |= cpu_to_le64(IPG_TFC_WORDALIGNDISABLED |
1903 (IPG_TFC_FRAMEID & cpu_to_le64(sp->tx_current)) | 1903 (IPG_TFC_FRAMEID & sp->tx_current) |
1904 (IPG_TFC_FRAGCOUNT & (1 << 24))); 1904 (IPG_TFC_FRAGCOUNT & (1 << 24)));
1905 /*
1906 * 16--17 (WordAlign) <- 3 (disable),
1907 * 0--15 (FrameId) <- sp->tx_current,
1908 * 24--27 (FragCount) <- 1
1909 */
1905 1910
1906 /* Request TxComplete interrupts at an interval defined 1911 /* Request TxComplete interrupts at an interval defined
1907 * by the constant IPG_FRAMESBETWEENTXCOMPLETES. 1912 * by the constant IPG_FRAMESBETWEENTXCOMPLETES.