summaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-08-08 12:55:59 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2013-08-08 12:55:59 +1000
commita73d994cae6b96511eb7f96dc3e9c84b8142cd30 (patch)
treec7b77d3a4c81cbd089c746d07d6b877ef03fea8c /block
parent01d26e6bb62d6d432fc8760abe42b1a005dacb47 (diff)
block/blk-sysfs.c: 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: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'block')
-rw-r--r--block/blk-sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index 5efc5a647183..3aa5b195f4dd 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -29,7 +29,7 @@ queue_var_store(unsigned long *var, const char *page, size_t count)
int err;
unsigned long v;
- err = strict_strtoul(page, 10, &v);
+ err = kstrtoul(page, 10, &v);
if (err || v > UINT_MAX)
return -EINVAL;