Commit 6b478c2c38fc2f379e7b4c3ef5e9432d8ca887b9

Authored by Ebru Akagunduz
Committed by Greg Kroah-Hartman
1 parent d7c9fde4d4

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>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

drivers/staging/octeon/ethernet-tx.c
... ... @@ -527,8 +527,8 @@
527 527 /* Get a work queue entry */
528 528 cvmx_wqe_t *work = cvmx_fpa_alloc(CVMX_FPA_WQE_POOL);
529 529 if (unlikely(work == NULL)) {
530   - printk_ratelimited("%s: Failed to allocate a work "
531   - "queue entry\n", dev->name);
  530 + printk_ratelimited("%s: Failed to allocate a work queue entry\n",
  531 + dev->name);
532 532 priv->stats.tx_dropped++;
533 533 dev_kfree_skb(skb);
534 534 return 0;