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-v5.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging

Pull hwmon fixes from Guenter Roeck:
"Fix compatible string typos in the xdpe12284 driver, and a wrong bit
value in the ltc2978 driver"

* tag 'hwmon-for-v5.6-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (pmbus/xdpe12284) fix typo in compatible strings
hwmon: (pmbus/ltc2978) Fix PMBus polling of MFR_COMMON definitions.

+4 -4
+2 -2
drivers/hwmon/pmbus/ltc2978.c
··· 82 82 83 83 #define LTC_POLL_TIMEOUT 100 /* in milli-seconds */ 84 84 85 - #define LTC_NOT_BUSY BIT(5) 86 - #define LTC_NOT_PENDING BIT(4) 85 + #define LTC_NOT_BUSY BIT(6) 86 + #define LTC_NOT_PENDING BIT(5) 87 87 88 88 /* 89 89 * LTC2978 clears peak data whenever the CLEAR_FAULTS command is executed, which
+2 -2
drivers/hwmon/pmbus/xdpe12284.c
··· 94 94 MODULE_DEVICE_TABLE(i2c, xdpe122_id); 95 95 96 96 static const struct of_device_id __maybe_unused xdpe122_of_match[] = { 97 - {.compatible = "infineon, xdpe12254"}, 98 - {.compatible = "infineon, xdpe12284"}, 97 + {.compatible = "infineon,xdpe12254"}, 98 + {.compatible = "infineon,xdpe12284"}, 99 99 {} 100 100 }; 101 101 MODULE_DEVICE_TABLE(of, xdpe122_of_match);