Skip to content

Commit

Permalink
Staging: slicoss: Replace seq_printf with seq_puts
Browse files Browse the repository at this point in the history
This patch fixes the following checkpatch.pl warning in slicoss.c:
WARNING: Prefer seq_puts to seq_printf

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
rashika authored and gregkh committed Oct 27, 2013
1 parent b28ca1c commit 7aff381
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions drivers/staging/slicoss/slicoss.c
Expand Up @@ -1835,7 +1835,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_printf(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",
Expand Down Expand Up @@ -1866,8 +1866,8 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)
config->macinfo[i].macaddrA[4],
config->macinfo[i].macaddrA[5]);
}
seq_printf(seq, " IF Init State Duplex/Speed irq\n");
seq_printf(seq, " -------------------------------\n");
seq_puts(seq, " IF Init State Duplex/Speed irq\n");
seq_puts(seq, " -------------------------------\n");
for (i = 0; i < card->adapters_allocated; i++) {
struct adapter *adapter;

Expand Down Expand Up @@ -1910,7 +1910,7 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)
switch (config->FruFormat) {
case ATK_FRU_FORMAT:
{
seq_printf(seq,
seq_puts(seq,
"Vendor : Alacritech, Inc.\n");
seq_printf(seq,
"Assembly # : %c%c%c%c%c%c\n",
Expand Down Expand Up @@ -1943,9 +1943,9 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)

default:
{
seq_printf(seq,
seq_puts(seq,
"Vendor : Alacritech, Inc.\n");
seq_printf(seq,
seq_puts(seq,
"Serial # : Empty FRU\n");
break;
}
Expand All @@ -1954,7 +1954,7 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)
switch (config->OEMFruFormat) {
case VENDOR1_FRU_FORMAT:
{
seq_printf(seq, "FRU Information:\n");
seq_puts(seq, "FRU Information:\n");
seq_printf(seq, " Commodity # : %c\n",
oemfru[0]);
seq_printf(seq,
Expand All @@ -1977,7 +1977,7 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)

case VENDOR2_FRU_FORMAT:
{
seq_printf(seq, "FRU Information:\n");
seq_puts(seq, "FRU Information:\n");
seq_printf(seq,
" Part # : "
"%c%c%c%c%c%c%c%c\n",
Expand All @@ -2000,12 +2000,12 @@ static int slic_debug_card_show(struct seq_file *seq, void *v)

case VENDOR3_FRU_FORMAT:
{
seq_printf(seq, "FRU Information:\n");
seq_puts(seq, "FRU Information:\n");
}

case VENDOR4_FRU_FORMAT:
{
seq_printf(seq, "FRU Information:\n");
seq_puts(seq, "FRU Information:\n");
seq_printf(seq,
" FRU Number : "
"%c%c%c%c%c%c%c%c\n",
Expand Down

0 comments on commit 7aff381

Please sign in to comment.