sensors/lm_sensors-r5916-fix-EMC140x-detection.patch
Jean Delvare 08ef91a592 - lm_sensors-r5910-detect-new-Nuvoton-superio.patch: Add detection
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
2011-02-17 09:16:42 +00:00

24 lines
735 B
Diff

Fix addresses checked for SMSC EMC1403 and EMC1404.
---
prog/detect/sensors-detect | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- lm_sensors-3.2.0.orig/prog/detect/sensors-detect
+++ lm_sensors-3.2.0/prog/detect/sensors-detect
@@ -1182,12 +1182,12 @@ use vars qw(@i2c_adapter_names);
}, {
name => "SMSC EMC1403",
driver => "emc1403",
- i2c_addrs => [0x18, 0x2a, 0x4c, 0x4d],
+ i2c_addrs => [0x18, 0x29, 0x4c, 0x4d],
i2c_detect => sub { emc1403_detect(@_, 0); },
}, {
name => "SMSC EMC1404",
driver => "to-be-written", # emc1403
- i2c_addrs => [0x18, 0x2a, 0x4c, 0x4d],
+ i2c_addrs => [0x18, 0x29, 0x4c, 0x4d],
i2c_detect => sub { emc1403_detect(@_, 1); },
}, {
name => "ST STTS424",