From: Markus Elfring <elfr...@users.sourceforge.net>
Date: Mon, 8 May 2017 14:20:18 +0200

A single character 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 <elfr...@users.sourceforge.net>
---
 drivers/input/input.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/input.c b/drivers/input/input.c
index 067d648028a2..0d204b841575 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -1126,7 +1126,7 @@ static void input_seq_print_bitmap(struct seq_file *seq, 
const char *name,
         * If no output was produced print a single 0.
         */
        if (skip_empty)
-               seq_puts(seq, "0");
+               seq_putc(seq, '0');
 
        seq_putc(seq, '\n');
 }
-- 
2.12.2

Reply via email to