diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2024-07-13 15:43:17 +0200 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2024-07-15 22:43:41 +0200 |
commit | 1a7812b25e69f6c63c52d3bc93c0970ab7ad9660 (patch) | |
tree | 8e7c77a15f88daebe9edc89d92b607202d26e75c | |
parent | nvme/pci: Add APST quirk for Lenovo N60z laptop (diff) | |
download | linux-1a7812b25e69f6c63c52d3bc93c0970ab7ad9660.tar.xz linux-1a7812b25e69f6c63c52d3bc93c0970ab7ad9660.zip |
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 <elfring@users.sourceforge.net>
Signed-off-by: Keith Busch <kbusch@kernel.org>
-rw-r--r-- | drivers/nvme/host/fabrics.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) |