mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8273f0a34c
commit
d77566247d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue