Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1553939
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/8] mmc-core: Use seq_puts() in mtf_testlist_show() |
| Date | 2017-01-08 22:50 +0100 |
| Message-ID | <sXtvH-3AV-9@gated-at.bofh.it> (permalink) |
| References | <sXtvH-3AV-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Sun, 8 Jan 2017 19:48:28 +0100 The script "checkpatch.pl" pointed information out like the following. WARNING: Prefer seq_puts to seq_printf Thus fix the affected source code place. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> --- drivers/mmc/core/mmc_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/core/mmc_test.c b/drivers/mmc/core/mmc_test.c index 2f838a13a904..848f4f30e343 100644 --- a/drivers/mmc/core/mmc_test.c +++ b/drivers/mmc/core/mmc_test.c @@ -3163,7 +3163,7 @@ static int mtf_testlist_show(struct seq_file *sf, void *data) mutex_lock(&mmc_test_lock); - seq_printf(sf, "0:\tRun all tests\n"); + seq_puts(sf, "0:\tRun all tests\n"); for (i = 0; i < ARRAY_SIZE(mmc_test_cases); i++) seq_printf(sf, "%d:\t%s\n", i+1, mmc_test_cases[i].name); -- 2.11.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 3/8] mmc-core: Use seq_puts() in mtf_testlist_show() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-01-08 22:50 +0100 Re: [PATCH 3/8] mmc-core: Use seq_puts() in mtf_testlist_show() Linus Walleij <linus.walleij@linaro.org> - 2017-01-09 19:40 +0100 Re: [PATCH 3/8] mmc-core: Use seq_puts() in mtf_testlist_show() Shawn Lin <shawn.lin@rock-chips.com> - 2017-01-10 09:50 +0100
csiph-web