Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4527c90 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

mm/vmalloc.c: replace seq_printf by seq_puts



Replace seq_printf where possible

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent ada4ba59
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -2619,19 +2619,19 @@ static int s_show(struct seq_file *m, void *p)
		seq_printf(m, " phys=%llx", (unsigned long long)v->phys_addr);

	if (v->flags & VM_IOREMAP)
		seq_printf(m, " ioremap");
		seq_puts(m, " ioremap");

	if (v->flags & VM_ALLOC)
		seq_printf(m, " vmalloc");
		seq_puts(m, " vmalloc");

	if (v->flags & VM_MAP)
		seq_printf(m, " vmap");
		seq_puts(m, " vmap");

	if (v->flags & VM_USERMAP)
		seq_printf(m, " user");
		seq_puts(m, " user");

	if (v->flags & VM_VPAGES)
		seq_printf(m, " vpages");
		seq_puts(m, " vpages");

	show_numa_info(m, v);
	seq_putc(m, '\n');