Commit f721a465 authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Rusty Russell

params.c: Use new strtobool function to process boolean inputs

Signed-off-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent a0374396
...@@ -297,21 +297,15 @@ EXPORT_SYMBOL(param_ops_charp); ...@@ -297,21 +297,15 @@ EXPORT_SYMBOL(param_ops_charp);
int param_set_bool(const char *val, const struct kernel_param *kp) int param_set_bool(const char *val, const struct kernel_param *kp)
{ {
bool v; bool v;
int ret;
/* No equals means "set"... */ /* No equals means "set"... */
if (!val) val = "1"; if (!val) val = "1";
/* One of =[yYnN01] */ /* One of =[yYnN01] */
switch (val[0]) { ret = strtobool(val, &v);
case 'y': case 'Y': case '1': if (ret)
v = true; return ret;
break;
case 'n': case 'N': case '0':
v = false;
break;
default:
return -EINVAL;
}
if (kp->flags & KPARAM_ISBOOL) if (kp->flags & KPARAM_ISBOOL)
*(bool *)kp->arg = v; *(bool *)kp->arg = v;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment