hwmon: Replace SENSORS_LIMIT with clamp_val
[firefly-linux-kernel-4.4.55.git] / drivers / hwmon / max6642.c
index 223461a6d70f974ebeec806bc4c3cc8cb780088f..57d58cd3220682030fcb3f0d32b62e4e77648c04 100644 (file)
@@ -239,7 +239,7 @@ static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
                return err;
 
        mutex_lock(&data->update_lock);
-       data->temp_high[attr2->nr] = SENSORS_LIMIT(temp_to_reg(val), 0, 255);
+       data->temp_high[attr2->nr] = clamp_val(temp_to_reg(val), 0, 255);
        i2c_smbus_write_byte_data(client, attr2->index,
                                  data->temp_high[attr2->nr]);
        mutex_unlock(&data->update_lock);