scst_sysfs: Unify output format for scst_luns_mgmt_show()

All sysfs mgmt show functions print available parameters/attributes
without '.' at the end, except for scst_luns_mgmt_show(). So fix it.

This patch doesn't change any functionality.
This commit is contained in:
Gleb Chesnokov
2022-11-28 16:56:41 +03:00
parent 66016e5ee0
commit 0ea9622afa

View File

@@ -1522,7 +1522,7 @@ static ssize_t scst_luns_mgmt_show(struct kobject *kobj,
"\n"
"where parameters are one or more "
"param_name=value pairs separated by ';'\n"
"\nThe following parameters available: read_only.\n";
"\nThe following parameters available: read_only\n";
return sprintf(buf, "%s", help);
}