From: Ebru Akagunduz Date: Thu, 10 Oct 2013 01:02:29 +0000 (+0300) Subject: Staging: octeon: fix quoted string split across lines in ethernet-tx.c X-Git-Tag: upstream/snapshot3+hdmi~4059^2~390 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Reviewed-by: Josh Triplett Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/octeon/ethernet-tx.c b/drivers/staging/octeon/ethernet-tx.c index dbfef1a..5b7f04e 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;