|
@@ -644,7 +644,7 @@ static ssize_t rfkill_soft_store(struct device *dev,
|
|
|
if (!capable(CAP_NET_ADMIN))
|
|
|
return -EPERM;
|
|
|
|
|
|
- err = strict_strtoul(buf, 0, &state);
|
|
|
+ err = kstrtoul(buf, 0, &state);
|
|
|
if (err)
|
|
|
return err;
|
|
|
|
|
@@ -688,7 +688,7 @@ static ssize_t rfkill_state_store(struct device *dev,
|
|
|
if (!capable(CAP_NET_ADMIN))
|
|
|
return -EPERM;
|
|
|
|
|
|
- err = strict_strtoul(buf, 0, &state);
|
|
|
+ err = kstrtoul(buf, 0, &state);
|
|
|
if (err)
|
|
|
return err;
|
|
|
|