Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150935
b: refs/heads/master
c: 5b2c4b9
h: refs/heads/master
i:
  150933: f37b3a5
  150931: 5e74e39
  150927: 890c534
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jun 13, 2009
1 parent 279a3d4 commit 3603e1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 81fbbf60408ad6b98ff72120de948cb7fd2498d0
refs/heads/master: 5b2c4b972c0226406361f83b747eb5cdab51e68e
2 changes: 1 addition & 1 deletion trunk/drivers/net/usb/hso.c
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ static int hso_net_start_xmit(struct sk_buff *skb, struct net_device *net)
}
dev_kfree_skb(skb);
/* we're done */
return result;
return NETDEV_TX_OK;
}

static void hso_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info)
Expand Down
7 changes: 3 additions & 4 deletions trunk/drivers/staging/at76_usb/at76_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -3242,12 +3242,11 @@ static int at76_tx(struct sk_buff *skb, struct net_device *netdev)
"%s: -EINVAL: tx urb %p hcpriv %p complete %p\n",
priv->netdev->name, priv->tx_urb,
priv->tx_urb->hcpriv, priv->tx_urb->complete);
} else {
} else
stats->tx_bytes += skb->len;
dev_kfree_skb(skb);
}

return ret;
dev_kfree_skb(skb);
return NETDEV_TX_OK;
}

static void at76_tx_timeout(struct net_device *netdev)
Expand Down

0 comments on commit 3603e1b

Please sign in to comment.