aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wan
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2014-08-22 19:21:53 -0400
committerDavid S. Miller <davem@davemloft.net>2014-08-25 02:02:45 -0400
commit4798248e4e023170e937a65a1d30fcc52496dd42 (patch)
treec043fec145a1c2035f4c9e4ff7b4fbedc07bb1d5 /drivers/net/wan
parent4c83acbc565d53296f1731034c5041a0fbabcaeb (diff)
net: Add ops->ndo_xmit_flush()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan')
-rw-r--r--drivers/net/wan/dlci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/dlci.c b/drivers/net/wan/dlci.c
index 43c9960dce1c..81b22a180aad 100644
--- a/drivers/net/wan/dlci.c
+++ b/drivers/net/wan/dlci.c
@@ -193,7 +193,7 @@ static netdev_tx_t dlci_transmit(struct sk_buff *skb, struct net_device *dev)
193 struct dlci_local *dlp = netdev_priv(dev); 193 struct dlci_local *dlp = netdev_priv(dev);
194 194
195 if (skb) 195 if (skb)
196 dlp->slave->netdev_ops->ndo_start_xmit(skb, dlp->slave); 196 netdev_start_xmit(skb, dlp->slave);
197 return NETDEV_TX_OK; 197 return NETDEV_TX_OK;
198} 198}
199 199