Staging: slicoss: Fix unnecessary whitespace before a quoted newline in slicoss.c
authorMonam Agarwal <monamagarwal123@gmail.com>
Thu, 27 Feb 2014 19:14:39 +0000 (00:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Feb 2014 23:24:20 +0000 (15:24 -0800)
This patch fixes the following checkpatch.pl issues in slicoss.c
WARNING: unnecessary whitespace before a quoted newline in slicoss.c

Signed-off-by: Monam Agarwal <monamagarwal123@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/slicoss/slicoss.c

index 291e07cf902ab75077ca78457307a1f960c398d8..758c4efea0dedf2d0757b0fae83bd57ea988f206 100644 (file)
@@ -1830,7 +1830,7 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)
 #endif
 
        seq_printf(seq, "driver_version           : %s\n", slic_proc_version);
-       seq_puts(seq, "Microcode versions:           \n");
+       seq_puts(seq, "Microcode versions:\n");
        seq_printf(seq, "    Gigabit (gb)         : %s %s\n",
                    MOJAVE_UCODE_VERS_STRING, MOJAVE_UCODE_VERS_DATE);
        seq_printf(seq, "    Gigabit Receiver     : %s %s\n",
@@ -2634,7 +2634,7 @@ static void slic_interrupt_card_up(u32 isr, struct adapter *adapter,
                                }
                        } else if (isr & ISR_XDROP) {
                                dev_err(&dev->dev,
-                                               "isr & ISR_ERR [%x] ISR_XDROP \n", isr);
+                                               "isr & ISR_ERR [%x] ISR_XDROP\n", isr);
                        } else {
                                dev_err(&dev->dev,
                                                "isr & ISR_ERR [%x]\n",
This page took 0.037318 seconds and 5 git commands to generate.