diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-06-01 03:05:57 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-06-05 04:43:08 -0400 |
commit | 61e2d1a9b2e8105631ac7ff5b048342fcfd3d622 (patch) | |
tree | 6778b8ff4d2ec4962c1db07bd41ed4c1c304a2bc /drivers/crypto/picoxcell_crypto.c | |
parent | 9a733019aa46c37db6ef4686d23a4f5cdbf6fd90 (diff) |
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 'drivers/crypto/picoxcell_crypto.c')
-rw-r--r-- | drivers/crypto/picoxcell_crypto.c | 2 |
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, | |||
1298 | struct spacc_engine *engine = spacc_dev_to_engine(dev); | 1298 | struct spacc_engine *engine = spacc_dev_to_engine(dev); |
1299 | unsigned long thresh; | 1299 | unsigned long thresh; |
1300 | 1300 | ||
1301 | if (strict_strtoul(buf, 0, &thresh)) | 1301 | if (kstrtoul(buf, 0, &thresh)) |
1302 | return -EINVAL; | 1302 | return -EINVAL; |
1303 | 1303 | ||
1304 | thresh = clamp(thresh, 1UL, engine->fifo_sz - 1); | 1304 | thresh = clamp(thresh, 1UL, engine->fifo_sz - 1); |