aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ks8851.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ks8851.c')
-rw-r--r--drivers/net/ks8851.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/ks8851.c b/drivers/net/ks8851.c
index 9a1dea60c1c4..547ac7c7479c 100644
--- a/drivers/net/ks8851.c
+++ b/drivers/net/ks8851.c
@@ -868,11 +868,12 @@ static int ks8851_net_stop(struct net_device *dev)
868 * and secondly so we can round up more than one packet to transmit which 868 * and secondly so we can round up more than one packet to transmit which
869 * means we can try and avoid generating too many transmit done interrupts. 869 * means we can try and avoid generating too many transmit done interrupts.
870 */ 870 */
871static int ks8851_start_xmit(struct sk_buff *skb, struct net_device *dev) 871static netdev_tx_t ks8851_start_xmit(struct sk_buff *skb,
872 struct net_device *dev)
872{ 873{
873 struct ks8851_net *ks = netdev_priv(dev); 874 struct ks8851_net *ks = netdev_priv(dev);
874 unsigned needed = calc_txlen(skb->len); 875 unsigned needed = calc_txlen(skb->len);
875 int ret = NETDEV_TX_OK; 876 netdev_tx_t ret = NETDEV_TX_OK;
876 877
877 if (netif_msg_tx_queued(ks)) 878 if (netif_msg_tx_queued(ks))
878 ks_dbg(ks, "%s: skb %p, %d@%p\n", __func__, 879 ks_dbg(ks, "%s: skb %p, %d@%p\n", __func__,