From: Markus Elfring <[email protected]>
Date: Tue, 7 Feb 2017 19:23:03 +0100

An information should be put into a sequence together with a line break.
Pass the desired data in a single function call instead.

Signed-off-by: Markus Elfring <[email protected]>
---
 drivers/hid/hid-debug.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c
index 383a4a838351..8d019d0db4f3 100644
--- a/drivers/hid/hid-debug.c
+++ b/drivers/hid/hid-debug.c
@@ -645,8 +645,7 @@ void hid_dump_device(struct hid_device *device, struct 
seq_file *f)
                        seq_printf(f, "%s", table[i]);
                        if (report->id)
                                seq_printf(f, "(%d)", report->id);
-                       seq_printf(f, "[%s]", table[report->type]);
-                       seq_printf(f, "\n");
+                       seq_printf(f, "[%s]\n", table[report->type]);
                        for (k = 0; k < report->maxfield; k++) {
                                tab(4, f);
                                seq_printf(f, "Field(%d)\n", k);
-- 
2.11.1

Reply via email to