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>
This commit is contained in:
parent
2dfe3511ce
commit
09f99a3dfa
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue