From: Markus Elfring Date: Sat, 13 Jul 2024 13:43:17 +0000 (+0200) Subject: nvme-fabrics: Use seq_putc() in __nvmf_concat_opt_tokens() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1a7812b25e69f6c63c52d3bc93c0970ab7ad9660;p=users%2Fjedix%2Flinux-maple.git nvme-fabrics: Use seq_putc() in __nvmf_concat_opt_tokens() Single characters 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 Signed-off-by: Keith Busch --- diff --git a/drivers/nvme/host/fabrics.c b/drivers/nvme/host/fabrics.c index 44e342a46f39..f5f545fa0103 100644 --- a/drivers/nvme/host/fabrics.c +++ b/drivers/nvme/host/fabrics.c @@ -1403,10 +1403,10 @@ static void __nvmf_concat_opt_tokens(struct seq_file *seq_file) tok = &opt_tokens[idx]; if (tok->token == NVMF_OPT_ERR) continue; - seq_puts(seq_file, ","); + seq_putc(seq_file, ','); seq_puts(seq_file, tok->pattern); } - seq_puts(seq_file, "\n"); + seq_putc(seq_file, '\n'); } static int nvmf_dev_show(struct seq_file *seq_file, void *private)