projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7c9fde
)
Staging: octeon: fix quoted string split across lines in ethernet-tx.c
author
Ebru Akagunduz
<
[email protected]
>
Thu, 10 Oct 2013 01:02:29 +0000
(
04:02
+0300)
committer
Greg Kroah-Hartman
<
[email protected]
>
Fri, 11 Oct 2013 20:52:00 +0000
(13:52 -0700)
Fix checkpatch.pl issues with quoted string split
across lines in ethernet-tx.c
Signed-off-by: Ebru Akagunduz <
[email protected]
>
Reviewed-by: Josh Triplett <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/octeon/ethernet-tx.c
patch
|
blob
|
history
diff --git
a/drivers/staging/octeon/ethernet-tx.c
b/drivers/staging/octeon/ethernet-tx.c
index dbfef1a05176ae41db21a4f38aa0ba59f71fb41d..5b7f04ebd3fe4617b93ca1345219e67bc5e13f60 100644
(file)
--- a/
drivers/staging/octeon/ethernet-tx.c
+++ b/
drivers/staging/octeon/ethernet-tx.c
@@
-527,8
+527,8
@@
int cvm_oct_xmit_pow(struct sk_buff *skb, struct net_device *dev)
/* Get a work queue entry */
cvmx_wqe_t *work = cvmx_fpa_alloc(CVMX_FPA_WQE_POOL);
if (unlikely(work == NULL)) {
- printk_ratelimited("%s: Failed to allocate a work
"
-
"queue entry\n",
dev->name);
+ printk_ratelimited("%s: Failed to allocate a work
queue entry\n",
+ dev->name);
priv->stats.tx_dropped++;
dev_kfree_skb(skb);
return 0;