From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Sun, 14 Jul 2024 20:23:49 +0200 Single line breaks should be put into a sequence. Thus use the corresponding function “seq_putc”. This issue was transformed by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- net/core/pktgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net/core/pktgen.c b/net/core/pktgen.c index ea55a758a475..441e058d6726 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -577,7 +577,7 @@ static int pktgen_if_show(struct seq_file *seq, void *v) pkt_dev->imix_entries[i].size, pkt_dev->imix_entries[i].weight); } - seq_puts(seq, "\n"); + seq_putc(seq, '\n'); } seq_printf(seq, @@ -685,7 +685,7 @@ static int pktgen_if_show(struct seq_file *seq, void *v) } } - seq_puts(seq, "\n"); + seq_putc(seq, '\n'); /* not really stopped, more like last-running-at */ stopped = pkt_dev->running ? ktime_get() : pkt_dev->stopped_at; @@ -706,7 +706,7 @@ static int pktgen_if_show(struct seq_file *seq, void *v) pkt_dev->imix_entries[i].size, pkt_dev->imix_entries[i].count_so_far); } - seq_puts(seq, "\n"); + seq_putc(seq, '\n'); } seq_printf(seq, -- 2.45.2