|
@@ -43,7 +43,7 @@ static ssize_t btmrvl_hscfgcmd_write(struct file *file,
|
|
|
if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
|
|
|
return -EFAULT;
|
|
|
|
|
|
- ret = strict_strtol(buf, 10, &result);
|
|
|
+ ret = kstrtol(buf, 10, &result);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
@@ -89,7 +89,7 @@ static ssize_t btmrvl_pscmd_write(struct file *file, const char __user *ubuf,
|
|
|
if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
|
|
|
return -EFAULT;
|
|
|
|
|
|
- ret = strict_strtol(buf, 10, &result);
|
|
|
+ ret = kstrtol(buf, 10, &result);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|
|
@@ -135,7 +135,7 @@ static ssize_t btmrvl_hscmd_write(struct file *file, const char __user *ubuf,
|
|
|
if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
|
|
|
return -EFAULT;
|
|
|
|
|
|
- ret = strict_strtol(buf, 10, &result);
|
|
|
+ ret = kstrtol(buf, 10, &result);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
|