diff options
Diffstat (limited to 'drivers/s390/net/netiucv.c')
-rw-r--r-- | drivers/s390/net/netiucv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/s390/net/netiucv.c b/drivers/s390/net/netiucv.c index 8c36eafcfbfe..bb1183a2ed66 100644 --- a/drivers/s390/net/netiucv.c +++ b/drivers/s390/net/netiucv.c | |||
@@ -1376,14 +1376,14 @@ static int netiucv_tx(struct sk_buff *skb, struct net_device *dev) | |||
1376 | if (skb == NULL) { | 1376 | if (skb == NULL) { |
1377 | IUCV_DBF_TEXT(data, 2, "netiucv_tx: skb is NULL\n"); | 1377 | IUCV_DBF_TEXT(data, 2, "netiucv_tx: skb is NULL\n"); |
1378 | privptr->stats.tx_dropped++; | 1378 | privptr->stats.tx_dropped++; |
1379 | return 0; | 1379 | return NETDEV_TX_OK; |
1380 | } | 1380 | } |
1381 | if (skb_headroom(skb) < NETIUCV_HDRLEN) { | 1381 | if (skb_headroom(skb) < NETIUCV_HDRLEN) { |
1382 | IUCV_DBF_TEXT(data, 2, | 1382 | IUCV_DBF_TEXT(data, 2, |
1383 | "netiucv_tx: skb_headroom < NETIUCV_HDRLEN\n"); | 1383 | "netiucv_tx: skb_headroom < NETIUCV_HDRLEN\n"); |
1384 | dev_kfree_skb(skb); | 1384 | dev_kfree_skb(skb); |
1385 | privptr->stats.tx_dropped++; | 1385 | privptr->stats.tx_dropped++; |
1386 | return 0; | 1386 | return NETDEV_TX_OK; |
1387 | } | 1387 | } |
1388 | 1388 | ||
1389 | /** | 1389 | /** |
@@ -1395,7 +1395,7 @@ static int netiucv_tx(struct sk_buff *skb, struct net_device *dev) | |||
1395 | privptr->stats.tx_dropped++; | 1395 | privptr->stats.tx_dropped++; |
1396 | privptr->stats.tx_errors++; | 1396 | privptr->stats.tx_errors++; |
1397 | privptr->stats.tx_carrier_errors++; | 1397 | privptr->stats.tx_carrier_errors++; |
1398 | return 0; | 1398 | return NETDEV_TX_OK; |
1399 | } | 1399 | } |
1400 | 1400 | ||
1401 | if (netiucv_test_and_set_busy(dev)) { | 1401 | if (netiucv_test_and_set_busy(dev)) { |