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-fixes-for-v6.14-rc8/6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fixes from Guenter Roeck:

- Fix an entry in MAINTAINERS to avoid sending hwmon review requests to
the i2c mailing list

- Fix an out-of-bounds access in nct6775 driver

* tag 'hwmon-fixes-for-v6.14-rc8/6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (nct6775-core) Fix out of bounds access for NCT679{8,9}
MAINTAINERS: correct list and scope of LTC4286 HARDWARE MONITOR

+3 -5
+1 -3
MAINTAINERS
··· 13752 13752 13753 13753 LTC4286 HARDWARE MONITOR DRIVER 13754 13754 M: Delphine CC Chiu <Delphine_CC_Chiu@Wiwynn.com> 13755 - L: linux-i2c@vger.kernel.org 13755 + L: linux-hwmon@vger.kernel.org 13756 13756 S: Maintained 13757 13757 F: Documentation/devicetree/bindings/hwmon/lltc,ltc4286.yaml 13758 13758 F: Documentation/hwmon/ltc4286.rst 13759 - F: drivers/hwmon/pmbus/Kconfig 13760 - F: drivers/hwmon/pmbus/Makefile 13761 13759 F: drivers/hwmon/pmbus/ltc4286.c 13762 13760 13763 13761 LTC4306 I2C MULTIPLEXER DRIVER
+2 -2
drivers/hwmon/nct6775-core.c
··· 273 273 static const u16 NCT6776_REG_TOLERANCE_H[] = { 274 274 0x10c, 0x20c, 0x30c, 0x80c, 0x90c, 0xa0c, 0xb0c }; 275 275 276 - static const u8 NCT6776_REG_PWM_MODE[] = { 0x04, 0, 0, 0, 0, 0 }; 277 - static const u8 NCT6776_PWM_MODE_MASK[] = { 0x01, 0, 0, 0, 0, 0 }; 276 + static const u8 NCT6776_REG_PWM_MODE[] = { 0x04, 0, 0, 0, 0, 0, 0 }; 277 + static const u8 NCT6776_PWM_MODE_MASK[] = { 0x01, 0, 0, 0, 0, 0, 0 }; 278 278 279 279 static const u16 NCT6776_REG_FAN_MIN[] = { 280 280 0x63a, 0x63c, 0x63e, 0x640, 0x642, 0x64a, 0x64c };