mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 13:11:40 +00:00
ib/srp: Add missing new line after displaying fast_io_fail_tmo param
Long-time missing new-line in sysfs output. Simply add it. Signed-off-by: Donald Dutile <ddutile@redhat.com> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Link: https://lore.kernel.org/r/20191009164937.21989-1-ddutile@redhat.com Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
d302c6e3a6
commit
5a0d523781
@ -174,9 +174,9 @@ static int srp_tmo_get(char *buffer, const struct kernel_param *kp)
|
||||
int tmo = *(int *)kp->arg;
|
||||
|
||||
if (tmo >= 0)
|
||||
return sprintf(buffer, "%d", tmo);
|
||||
return sprintf(buffer, "%d\n", tmo);
|
||||
else
|
||||
return sprintf(buffer, "off");
|
||||
return sprintf(buffer, "off\n");
|
||||
}
|
||||
|
||||
static int srp_tmo_set(const char *val, const struct kernel_param *kp)
|
||||
|
Loading…
Reference in New Issue
Block a user