From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Wed, 19 Oct 2016 21:46:16 +0200 Strings which did not contain data format specifications 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@xxxxxxxxxxxxxxxxxxxxx> --- arch/blackfin/kernel/setup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index a159008..fdd9168 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c @@ -1313,9 +1313,9 @@ static int show_cpuinfo(struct seq_file *m, void *v) if (bfin_revid() != bfin_compiled_revid()) { if (bfin_compiled_revid() == -1) - seq_printf(m, "(Compiled for Rev none)"); + seq_puts(m, "(Compiled for Rev none)"); else if (bfin_compiled_revid() == 0xffff) - seq_printf(m, "(Compiled for Rev any)"); + seq_puts(m, "(Compiled for Rev any)"); else seq_printf(m, "(Compiled for Rev %d)", bfin_compiled_revid()); } @@ -1385,7 +1385,7 @@ static int show_cpuinfo(struct seq_file *m, void *v) seq_printf(m, "icache setup\t: %d Sub-banks/%d Ways, %d Lines/Way\n", BFIN_ISUBBANKS, BFIN_IWAYS, BFIN_ILINES); else - seq_printf(m, "icache setup\t: off\n"); + seq_puts(m, "icache setup\t: off\n"); seq_printf(m, "dcache setup\t: %d Super-banks/%d Sub-banks/%d Ways, %d Lines/Way\n", -- 2.10.1 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html