diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-01-14 10:08:13 +0100 |
---|---|---|
committer | Luis Chamberlain <mcgrof@kernel.org> | 2023-01-25 23:07:21 +0100 |
commit | def7b92efd868a6c78da86770704c1a03506016e (patch) | |
tree | 7e3b0418a037183bdf33a025fcba1440c6ab7162 /kernel/params.c | |
parent | test_kmod: stop kernel-doc warnings (diff) | |
download | linux-def7b92efd868a6c78da86770704c1a03506016e.tar.xz linux-def7b92efd868a6c78da86770704c1a03506016e.zip |
kernel/params.c: Use kstrtobool() instead of strtobool()
strtobool() is the same as kstrtobool().
However, the latter is more used within the kernel.
In order to remove strtobool() and slightly simplify kstrtox.h, switch to
the other function name.
While at it, include the corresponding header file (<linux/kstrtox.h>)
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Miroslav Benes <mbenes@suse.cz>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/params.c')
-rw-r--r-- | kernel/params.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/params.c b/kernel/params.c index 14d66070757b..6e34ca89ebae 100644 --- a/kernel/params.c +++ b/kernel/params.c @@ -4,6 +4,7 @@ */ #include <linux/kernel.h> +#include <linux/kstrtox.h> #include <linux/string.h> #include <linux/errno.h> #include <linux/module.h> @@ -310,7 +311,7 @@ int param_set_bool(const char *val, const struct kernel_param *kp) if (!val) val = "1"; /* One of =[yYnN01] */ - return strtobool(val, kp->arg); + return kstrtobool(val, kp->arg); } EXPORT_SYMBOL(param_set_bool); |