Changed strict_strtoul() call to kstrtoul to make checkpatch.pl happy
Signed-off-by: Johannes Thumshirn <[email protected]>
---
drivers/staging/line6/control.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/line6/control.c b/drivers/staging/line6/control.c
index 67e23b6..c2e4619 100644
--- a/drivers/staging/line6/control.c
+++ b/drivers/staging/line6/control.c
@@ -58,7 +58,7 @@ static ssize_t pod_set_param_int(struct device *dev, const
char *buf,
unsigned long value;
int retval;
- retval = strict_strtoul(buf, 10, &value);
+ retval = kstrtoul(buf, 10, &value);
if (retval)
return retval;
--
1.7.7.6
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel