Skip to content

Commit

Permalink
drivers/net/usb: Update WARN uses
Browse files Browse the repository at this point in the history
Add missing newlines.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Nov 9, 2010
1 parent c389ff8 commit 9c413ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/usb/ipheth.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ static int ipheth_tx(struct sk_buff *skb, struct net_device *net)

/* Paranoid */
if (skb->len > IPHETH_BUF_SIZE) {
WARN(1, "%s: skb too large: %d bytes", __func__, skb->len);
WARN(1, "%s: skb too large: %d bytes\n", __func__, skb->len);
dev->net->stats.tx_dropped++;
dev_kfree_skb_irq(skb);
return NETDEV_TX_OK;
Expand Down

0 comments on commit 9c413ed

Please sign in to comment.