hwmon: replaced strict_str* with kstr*
[deliverable/linux.git] / drivers / hwmon / adm9240.c
index 9e234b981b835d10c786d63f0a9dcfe0189e849f..3f63f5f9741d3b10165f76901f5c138a45d96f1d 100644 (file)
@@ -503,7 +503,7 @@ static ssize_t chassis_clear(struct device *dev,
        struct adm9240_data *data = i2c_get_clientdata(client);
        unsigned long val;
 
-       if (strict_strtoul(buf, 10, &val) || val != 0)
+       if (kstrtoul(buf, 10, &val) || val != 0)
                return -EINVAL;
 
        mutex_lock(&data->update_lock);
This page took 0.026049 seconds and 5 git commands to generate.