powerpc/4xx: Use seq_putc() in ocm_debugfs_show()

A single character (line break) should be put into a sequence.
Thus use the corresponding function "seq_putc".

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Cette révision appartient à :
Markus Elfring
2018-01-11 18:10:02 +01:00
révisé par Michael Ellerman
Parent b52106a040
révision 52930bc6e8

Voir le fichier

@@ -264,7 +264,7 @@ static int ocm_debugfs_show(struct seq_file *m, void *v)
blk->size, blk->owner);
}
seq_printf(m, "\n");
seq_putc(m, '\n');
}
return 0;