summaryrefslogtreecommitdiffstats
path: root/drivers/staging/octeon/ethernet-tx.c
diff options
context:
space:
mode:
authorEbru Akagunduz2013-10-10 03:02:29 +0200
committerGreg Kroah-Hartman2013-10-11 22:52:00 +0200
commit6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9 (patch)
treefeef1a4905b0ac329bc42db261f8527792dd0864 /drivers/staging/octeon/ethernet-tx.c
parentStaging: octeon: quoted string split across lines in ethernet-spi.c (diff)
downloadkernel-qcow2-linux-6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9.tar.gz
kernel-qcow2-linux-6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9.tar.xz
kernel-qcow2-linux-6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9.zip
Staging: octeon: fix quoted string split across lines in ethernet-tx.c
Fix checkpatch.pl issues with quoted string split across lines in ethernet-tx.c Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/octeon/ethernet-tx.c')
-rw-r--r--drivers/staging/octeon/ethernet-tx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/octeon/ethernet-tx.c b/drivers/staging/octeon/ethernet-tx.c
index dbfef1a05176..5b7f04ebd3fe 100644
--- 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;