diff options
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,  	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);  | 
