aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/picoxcell_crypto.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-06-01 16:05:57 +0900
committerHerbert Xu <herbert@gondor.apana.org.au>2013-06-05 16:43:08 +0800
commit61e2d1a9b2e8105631ac7ff5b048342fcfd3d622 (patch)
tree6778b8ff4d2ec4962c1db07bd41ed4c1c304a2bc /drivers/crypto/picoxcell_crypto.c
parentcrypto: dcp - Staticize local symbols (diff)
downloadlinux-dev-61e2d1a9b2e8105631ac7ff5b048342fcfd3d622.tar.xz
linux-dev-61e2d1a9b2e8105631ac7ff5b048342fcfd3d622.zip
crypto: picoxcell - 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: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--drivers/crypto/picoxcell_crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c
index ac30724d923d..888f7f4a6d3f 100644
--- a/drivers/crypto/picoxcell_crypto.c
+++ b/drivers/crypto/picoxcell_crypto.c
@@ -1298,7 +1298,7 @@ static ssize_t spacc_stat_irq_thresh_store(struct device *dev,
struct spacc_engine *engine = spacc_dev_to_engine(dev);
unsigned long thresh;
- if (strict_strtoul(buf, 0, &thresh))
+ if (kstrtoul(buf, 0, &thresh))
return -EINVAL;
thresh = clamp(thresh, 1UL, engine->fifo_sz - 1);