From: Markus Elfring <[email protected]>
Date: Sun, 7 May 2017 17:53:31 +0200

A bit of data was put into a sequence by two separate function calls.
Print the same data by a single function call instead.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <[email protected]>
---
 arch/s390/kernel/cache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/s390/kernel/cache.c b/arch/s390/kernel/cache.c
index c8a83276a4dc..9e9752ce3233 100644
--- a/arch/s390/kernel/cache.c
+++ b/arch/s390/kernel/cache.c
@@ -82,8 +82,8 @@ void show_cacheinfo(struct seq_file *m)
                           cache->disable_sysfs ? "Shared" : "Private");
                seq_printf(m, "size=%dK ", cache->size >> 10);
                seq_printf(m, "line_size=%u ", cache->coherency_line_size);
-               seq_printf(m, "associativity=%d", cache->ways_of_associativity);
-               seq_puts(m, "\n");
+               seq_printf(m, "associativity=%d\n",
+                          cache->ways_of_associativity);
        }
 }
 
-- 
2.12.2

Reply via email to