Merge tag 'please-pull-fixmcelog' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / drivers / scsi / qla2xxx / qla_dfs.c
index 2ca39b8e71667dfbd573b1cc5dc20685c578bc0b..15cf074ffa3c717e0936d0be8428dccd97e96ec3 100644 (file)
@@ -23,10 +23,10 @@ qla2x00_dfs_fce_show(struct seq_file *s, void *unused)
 
        mutex_lock(&ha->fce_mutex);
 
-       seq_printf(s, "FCE Trace Buffer\n");
+       seq_puts(s, "FCE Trace Buffer\n");
        seq_printf(s, "In Pointer = %llx\n\n", (unsigned long long)ha->fce_wr);
        seq_printf(s, "Base = %llx\n\n", (unsigned long long) ha->fce_dma);
-       seq_printf(s, "FCE Enable Registers\n");
+       seq_puts(s, "FCE Enable Registers\n");
        seq_printf(s, "%08x %08x %08x %08x %08x %08x\n",
            ha->fce_mb[0], ha->fce_mb[2], ha->fce_mb[3], ha->fce_mb[4],
            ha->fce_mb[5], ha->fce_mb[6]);
@@ -38,11 +38,11 @@ qla2x00_dfs_fce_show(struct seq_file *s, void *unused)
                        seq_printf(s, "\n%llx: ",
                            (unsigned long long)((cnt * 4) + fce_start));
                else
-                       seq_printf(s, " ");
+                       seq_putc(s, ' ');
                seq_printf(s, "%08x", *fce++);
        }
 
-       seq_printf(s, "\nEnd\n");
+       seq_puts(s, "\nEnd\n");
 
        mutex_unlock(&ha->fce_mutex);
 
This page took 0.024633 seconds and 5 git commands to generate.