From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Tue, 2 May 2017 20:48:36 +0200 A few single characters 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 <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/net/bonding/bond_procfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/bonding/bond_procfs.c b/drivers/net/bonding/bond_procfs.c index d8d4ada034b7..bdc4db184d94 100644 --- a/drivers/net/bonding/bond_procfs.c +++ b/drivers/net/bonding/bond_procfs.c @@ -72,7 +72,7 @@ static void bond_info_show_master(struct seq_file *seq) seq_printf(seq, " (fail_over_mac %s)", optval->string); } - seq_printf(seq, "\n"); + seq_putc(seq, '\n'); if (bond_mode_uses_xmit_hash(bond)) { optval = bond_opt_get_val(BOND_OPT_XMIT_HASH, @@ -117,11 +117,11 @@ static void bond_info_show_master(struct seq_file *seq) if (!bond->params.arp_targets[i]) break; if (printed) - seq_printf(seq, ","); + seq_putc(seq, ','); seq_printf(seq, " %pI4", &bond->params.arp_targets[i]); printed = 1; } - seq_printf(seq, "\n"); + seq_putc(seq, '\n'); } if (BOND_MODE(bond) == BOND_MODE_8023AD) { -- 2.12.2 -- 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