hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/s390/net/lcs.c
....@@ -1518,9 +1518,8 @@
15181518 /**
15191519 * Packet transmit function called by network stack
15201520 */
1521
-static int
1522
-__lcs_start_xmit(struct lcs_card *card, struct sk_buff *skb,
1523
- struct net_device *dev)
1521
+static netdev_tx_t __lcs_start_xmit(struct lcs_card *card, struct sk_buff *skb,
1522
+ struct net_device *dev)
15241523 {
15251524 struct lcs_header *header;
15261525 int rc = NETDEV_TX_OK;
....@@ -1581,8 +1580,7 @@
15811580 return rc;
15821581 }
15831582
1584
-static int
1585
-lcs_start_xmit(struct sk_buff *skb, struct net_device *dev)
1583
+static netdev_tx_t lcs_start_xmit(struct sk_buff *skb, struct net_device *dev)
15861584 {
15871585 struct lcs_card *card;
15881586 int rc;