mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
Documentation: replace strict_strtoul() with kstrtoul()
The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
5f5e39a152
commit
0ab943bf56
2 changed files with 3 additions and 3 deletions
|
@ -300,7 +300,7 @@ def tcm_mod_build_configfs(proto_ident, fabric_mod_dir_var, fabric_mod_name):
|
|||
buf += " int ret;\n\n"
|
||||
buf += " if (strstr(name, \"tpgt_\") != name)\n"
|
||||
buf += " return ERR_PTR(-EINVAL);\n"
|
||||
buf += " if (strict_strtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)\n"
|
||||
buf += " if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX)\n"
|
||||
buf += " return ERR_PTR(-EINVAL);\n\n"
|
||||
buf += " tpg = kzalloc(sizeof(struct " + fabric_mod_name + "_tpg), GFP_KERNEL);\n"
|
||||
buf += " if (!tpg) {\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue