diff options
author | Guenter Roeck <linux@roeck-us.net> | 2014-02-16 05:54:06 +0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2014-02-19 03:53:49 +0400 |
commit | 500a91571f0a5d0d3242d83802ea2fd1faccc66e (patch) | |
tree | 4c1baaeb3aaca0bad41756cb57ede6fe38d8e505 | |
parent | 6d0abeca3242a88cab8232e4acd7e2bf088f3bc2 (diff) | |
download | linux-500a91571f0a5d0d3242d83802ea2fd1faccc66e.tar.xz |
hwmon: (max1668) Fix writing the minimum temperature
When trying to set the minimum temperature, the driver was erroneously
writing the maximum temperature into the chip.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable@vger.kernel.org # v3.2+
Reviewed-by: Jean Delvare <jdelvare@suse.de>
-rw-r--r-- | drivers/hwmon/max1668.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/max1668.c b/drivers/hwmon/max1668.c index a7626358c95d..029b65e6c589 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); |