From: Christophe JAILLET Date: Tue, 1 Nov 2022 21:13:59 +0000 (+0100) Subject: greybus: svc: Use kstrtobool() instead of strtobool() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=0d4a030b3db1b53498f1c1ae243677fa0dd2e7ce;p=linux.git greybus: svc: 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 () Signed-off-by: Christophe JAILLET Reviewed-by: Johan Hovold Reviewed-by: Alex Elder Link: https://lore.kernel.org/r/ebf1e6988a53a455990230a37cf759ee542ea7ec.1667336095.git.christophe.jaillet@wanadoo.fr Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/greybus/svc.c b/drivers/greybus/svc.c index 56d2b44d6fefc..16cced80867a6 100644 --- a/drivers/greybus/svc.c +++ b/drivers/greybus/svc.c @@ -7,6 +7,7 @@ */ #include +#include #include #include @@ -83,7 +84,7 @@ static ssize_t watchdog_store(struct device *dev, int retval; bool user_request; - retval = strtobool(buf, &user_request); + retval = kstrtobool(buf, &user_request); if (retval) return retval;