Commit 3a0c58dd authored by Harvey Harrison's avatar Harvey Harrison Committed by Dmitry Torokhov

Input: ads7846 - strict_strtoul takes unsigned long

Fix sparse warning introduced by:
commit 160f1fef Input: convert drivers to use strict_strtoul()
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 0de048ab
...@@ -472,7 +472,7 @@ static ssize_t ads7846_disable_store(struct device *dev, ...@@ -472,7 +472,7 @@ static ssize_t ads7846_disable_store(struct device *dev,
const char *buf, size_t count) const char *buf, size_t count)
{ {
struct ads7846 *ts = dev_get_drvdata(dev); struct ads7846 *ts = dev_get_drvdata(dev);
long i; unsigned long i;
if (strict_strtoul(buf, 10, &i)) if (strict_strtoul(buf, 10, &i))
return -EINVAL; return -EINVAL;
......
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