1
0
Fork 0

target: tcm_loop: Use seq_puts() in tcm_loop_show_info()

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>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
hifive-unleashed-5.1
Markus Elfring 2017-12-11 11:01:57 +01:00 committed by Nicholas Bellinger
parent 2dfe3511ce
commit 09f99a3dfa
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static void tcm_loop_release_cmd(struct se_cmd *se_cmd)
static int tcm_loop_show_info(struct seq_file *m, struct Scsi_Host *host)
{
seq_printf(m, "tcm_loop_proc_info()\n");
seq_puts(m, "tcm_loop_proc_info()\n");
return 0;
}