mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-03-18 21:14:28 +00:00
hwmon: (pmbus) Replace strict_strtol with kstrtol
strict_strtol is deprecated and results in a checkpatch warning. Replace it with kstrtol. Acked-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
parent
b3789a0de2
commit
0117c3f245
1 changed files with 1 additions and 1 deletions
|
@ -782,7 +782,7 @@ static ssize_t pmbus_set_sensor(struct device *dev,
|
||||||
int ret;
|
int ret;
|
||||||
u16 regval;
|
u16 regval;
|
||||||
|
|
||||||
if (strict_strtol(buf, 10, &val) < 0)
|
if (kstrtol(buf, 10, &val) < 0)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
mutex_lock(&data->update_lock);
|
mutex_lock(&data->update_lock);
|
||||||
|
|
Loading…
Add table
Reference in a new issue