On Sat, 15 Feb 2014 18:07:59 -0800, Guenter Roeck wrote: > When trying to set the minimum temperature, the driver was erroneously > writing the maximum temperature into the chip. > > Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx> > --- > Candidate for -stable. > > drivers/hwmon/max1668.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/hwmon/max1668.c b/drivers/hwmon/max1668.c > index a762635..029b65e 100644 > --- a/drivers/hwmon/max1668.c > +++ b/drivers/hwmon/max1668.c > @@ -243,7 +243,7 @@ static ssize_t set_temp_min(struct device *dev, > data->temp_min[index] = clamp_val(temp/1000, -128, 127); > if (i2c_smbus_write_byte_data(client, > MAX1668_REG_LIML_WR(index), > - data->temp_max[index])) > + data->temp_min[index])) > count = -EIO; > mutex_unlock(&data->update_lock); > Huh, bad bug, good catch. Definitely good for -stable, even though it may not be the most popular hwmon driver. Reviewed-by: Jean Delvare <jdelvare@xxxxxxx> -- Jean Delvare Suse L3 Support _______________________________________________ lm-sensors mailing list lm-sensors@xxxxxxxxxxxxxx http://lists.lm-sensors.org/mailman/listinfo/lm-sensors