Staging: android: timed_output.c: use kstrtoint() instead of sscanf()

This patch makes checkpatch.pl happy by fixing the following warning:

WARNING: Prefer kstrto<type> to single variable sscanf

Signed-off-by: Murilo Opsfelder Araujo <mopsfelder@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Murilo Opsfelder Araujo 2014-07-28 20:45:06 -03:00 коммит произвёл Greg Kroah-Hartman
Родитель 7ebd4cba67
Коммит 6aa2621183
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -41,8 +41,10 @@ static ssize_t enable_store(struct device *dev, struct device_attribute *attr,
{
struct timed_output_dev *tdev = dev_get_drvdata(dev);
int value;
int rc;
if (sscanf(buf, "%d", &value) != 1)
rc = kstrtoint(buf, 0, &value);
if (rc != 0)
return -EINVAL;
tdev->enable(tdev, value);