diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-06-04 13:11:50 +0900 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-06-13 10:51:56 +0100 |
commit | 8420a24138e4ad7a8351bef136139ecb27cb15c5 (patch) | |
tree | c18f945c0fdd41ff83702c6654166748506dea72 /drivers/mfd/ab8500-debugfs.c | |
parent | fccf14ad1e4f09a4033908ead9bf3f393979d54b (diff) |
mfd: Replace strict_strtoul() with kstrtoul() in ab* and att*
The usage of strict_strtoul() is not preferred, because
strict_strtoul() is obsolete. Thus, kstrtoul() should be
used.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/ab8500-debugfs.c')
-rw-r--r-- | drivers/mfd/ab8500-debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ab8500-debugfs.c b/drivers/mfd/ab8500-debugfs.c index 37b7ce4c7c3..11656c2c63c 100644 --- a/drivers/mfd/ab8500-debugfs.c +++ b/drivers/mfd/ab8500-debugfs.c @@ -2757,7 +2757,7 @@ static ssize_t show_irq(struct device *dev, unsigned int irq_index; int err; - err = strict_strtoul(attr->attr.name, 0, &name); + err = kstrtoul(attr->attr.name, 0, &name); if (err) return err; |