]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
xtensa: Use seq_puts() in c_show()
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 7 May 2017 19:24:51 +0000 (21:24 +0200)
committerMax Filippov <jcmvbkbc@gmail.com>
Mon, 8 May 2017 20:16:22 +0000 (13:16 -0700)
A string which did not contain a data format specification should be put
into a sequence. Thus use the corresponding function "seq_puts".

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
arch/xtensa/kernel/setup.c

index 197e75b400b169f6014e801744cdd4030f11f370..460a226699b4f9c5fea84455ecaff2ac61e00617 100644 (file)
@@ -594,8 +594,7 @@ c_show(struct seq_file *f, void *slot)
                      (ccount_freq/10000) % 100,
                      loops_per_jiffy/(500000/HZ),
                      (loops_per_jiffy/(5000/HZ)) % 100);
-
-       seq_printf(f,"flags\t\t: "
+       seq_puts(f, "flags\t\t: "
 #if XCHAL_HAVE_NMI
                     "nmi "
 #endif