Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fix from Guenter Roeck:
"Fix writing the minimum temperature in max1668 driver"

* tag 'hwmon-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (max1668) Fix writing the minimum temperature

+1 -1
+1 -1
drivers/hwmon/max1668.c
··· 243 243 data->temp_min[index] = clamp_val(temp/1000, -128, 127); 244 244 if (i2c_smbus_write_byte_data(client, 245 245 MAX1668_REG_LIML_WR(index), 246 - data->temp_max[index])) 246 + data->temp_min[index])) 247 247 count = -EIO; 248 248 mutex_unlock(&data->update_lock); 249 249