PCI: Use seq_puts() instead of seq_printf() in show_device()
[linux-2.6-microblaze.git] / drivers / pci / proc.c
index 445b51d..fe7fe67 100644 (file)
@@ -377,7 +377,7 @@ static int show_device(struct seq_file *m, void *v)
        }
        seq_putc(m, '\t');
        if (drv)
-               seq_printf(m, "%s", drv->name);
+               seq_puts(m, drv->name);
        seq_putc(m, '\n');
        return 0;
 }