Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7756624 authored by Markus Elfring's avatar Markus Elfring Committed by David S. Miller
Browse files

skge: Use seq_puts() in skge_debug_show()



A string which did not contain a data format specification 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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8273f0a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3718,7 +3718,7 @@ static int skge_debug_show(struct seq_file *seq, void *v)
			   t->csum_offs, t->csum_write, t->csum_start);
	}

	seq_printf(seq, "\nRx Ring:\n");
	seq_puts(seq, "\nRx Ring:\n");
	for (e = skge->rx_ring.to_clean; ; e = e->next) {
		const struct skge_rx_desc *r = e->desc;