Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b478c2c authored by Ebru Akagunduz's avatar Ebru Akagunduz Committed by Greg Kroah-Hartman
Browse files

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: default avatarEbru Akagunduz <ebru.akagunduz@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d7c9fde4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;