From: Christophe JAILLET Date: Tue, 1 Nov 2022 21:14:01 +0000 (+0100) Subject: platform/chrome: Use kstrtobool() instead of strtobool() X-Git-Tag: v6.2-rc1~202^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58f23a6795a6c165b8c04041bacb999119f9dbc9;p=thirdparty%2Fkernel%2Flinux.git platform/chrome: 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 Signed-off-by: Tzung-Bi Shih Link: https://lore.kernel.org/r/8d66b4688c05a44b592a4d20e2660e9067163276.1667336095.git.christophe.jaillet@wanadoo.fr --- diff --git a/drivers/platform/chrome/cros_ec_lightbar.c b/drivers/platform/chrome/cros_ec_lightbar.c index 469dfc7a4a030..58beb2a047b24 100644 --- a/drivers/platform/chrome/cros_ec_lightbar.c +++ b/drivers/platform/chrome/cros_ec_lightbar.c @@ -8,6 +8,7 @@ #include #include #include +#include #include #include #include @@ -493,7 +494,7 @@ static ssize_t userspace_control_store(struct device *dev, bool enable; int ret; - ret = strtobool(buf, &enable); + ret = kstrtobool(buf, &enable); if (ret < 0) return ret;