aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/pmbus
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2012-01-16 10:14:54 -0800
committerGuenter Roeck <guenter.roeck@ericsson.com>2012-03-18 18:26:43 -0700
commit0117c3f24523166ca764575c0e486887b7e33c2b (patch)
tree07be3cff9e5712374e67f82511b0380d6e38feeb /drivers/hwmon/pmbus
parenthwmon: (lm83) fix checkpatch issues (diff)
downloadlinux-dev-0117c3f24523166ca764575c0e486887b7e33c2b.tar.xz
linux-dev-0117c3f24523166ca764575c0e486887b7e33c2b.zip
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>
Diffstat (limited to 'drivers/hwmon/pmbus')
-rw-r--r--drivers/hwmon/pmbus/pmbus_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c
index d89b33967a85..f571388d88fd 100644
--- a/drivers/hwmon/pmbus/pmbus_core.c
+++ b/drivers/hwmon/pmbus/pmbus_core.c
@@ -782,7 +782,7 @@ static ssize_t pmbus_set_sensor(struct device *dev,
int ret;
u16 regval;
- if (strict_strtol(buf, 10, &val) < 0)
+ if (kstrtol(buf, 10, &val) < 0)
return -EINVAL;
mutex_lock(&data->update_lock);