of Nuvoton NCT5571D, NCT5577D and NCT6776F. - lm_sensors-r5913-default-config-NCT677xF.patch: Default config for NCT6775F and NCT6776F. - lm_sensors-r5914-fix-TMP421-detection.patch: We probe addresses 0x1c-0x1f for other chips now, so we might as well look for TMP421 devices there. - lm_sensors-r5916-fix-EMC140x-detection.patch: Fix addresses checked for SMSC EMC1403 and EMC1404. - lm_sensors-r5930-fix-DDR3-SPD-detection.patch: Fix detection of SPD EEPROM on DDR3 memory modules. DDR3 uses CRC16 over 128 bytes instead of basic checksum over 64 bytes. Contributed by Clemens Ladisch. - libensors-visibility.patch: Add 3 missing symbols. OBS-URL: https://build.opensuse.org/package/show/Base:System/sensors?expand=0&rev=34
19 lines
617 B
Diff
19 lines
617 B
Diff
We probe addresses 0x1c-0x1f for other chips now, so we might as well
|
|
look for TMP421 devices there.
|
|
|
|
---
|
|
prog/detect/sensors-detect | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- lm_sensors-3.2.0.orig/prog/detect/sensors-detect
|
|
+++ lm_sensors-3.2.0/prog/detect/sensors-detect
|
|
@@ -950,7 +950,7 @@ use vars qw(@i2c_adapter_names);
|
|
}, {
|
|
name => "Texas Instruments TMP421",
|
|
driver => "tmp421",
|
|
- i2c_addrs => [0x2a, 0x4c..0x4f], # 0x1c-0x1f not probed.
|
|
+ i2c_addrs => [0x1c..0x1f, 0x2a, 0x4c..0x4f],
|
|
i2c_detect => sub { tmp42x_detect(@_, 0); },
|
|
}, {
|
|
name => "Texas Instruments TMP422",
|