Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7033b64b authored by Jingoo Han's avatar Jingoo Han Committed by Benjamin Herrenschmidt
Browse files

macintosh/ams: 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: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 7191b615
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -118,8 +118,12 @@ static ssize_t ams_input_store_joystick(struct device *dev,
{
	unsigned long enable;
	int error = 0;
	int ret;

	if (strict_strtoul(buf, 0, &enable) || enable > 1)
	ret = kstrtoul(buf, 0, &enable);
	if (ret)
		return ret;
	if (enable > 1)
		return -EINVAL;

	mutex_lock(&ams_input_mutex);