Browse Source

drm/nouveau/hwmon: replace strict_strtol() with kstrtol()

The usage of strict_strtol() is not preferred, because
strict_strtol() is obsolete. Thus, kstrtol() should be
used.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Jingoo Han 11 năm trước cách đây
mục cha
commit
0ac4e3a58d
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  1. 3 2
      drivers/gpu/drm/nouveau/nouveau_hwmon.c

+ 3 - 2
drivers/gpu/drm/nouveau/nouveau_hwmon.c

@@ -383,8 +383,9 @@ nouveau_hwmon_set_pwm1_enable(struct device *d, struct device_attribute *a,
 	long value;
 	int ret;
 
-	if (strict_strtol(buf, 10, &value) == -EINVAL)
-		return -EINVAL;
+	ret = kstrtol(buf, 10, &value);
+	if (ret)
+		return ret;
 
 	ret = therm->attr_set(therm, NOUVEAU_THERM_ATTR_FAN_MODE, value);
 	if (ret)