Changeset 6014
- Timestamp:
- 01/23/12 18:05:21 (4 months ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r6011 r6014 16 16 Make LM73 detection less problematic 17 17 Add detection of National Semiconductor LM96163 18 Add detection of GMT G781 18 19 19 20 3.3.1 (2011-07-21) -
lm-sensors/trunk/prog/detect/sensors-detect
r5999 r6014 819 819 i2c_detect => sub { adm1021_detect(@_, 1); }, 820 820 }, { 821 name => "Global Mixed-mode Technology G781", 822 driver => "lm90", 823 i2c_addrs => [0x4c, 0x4d], 824 i2c_detect => sub { lm90_detect(@_, 15); }, 825 }, { 821 826 name => "Maxim MAX1617", 822 827 driver => "adm1021", … … 4365 4370 # 8 = W83L771W/G, 9 = TMP401, 10 = TMP411, 4366 4371 # 11 = W83L771AWG/ASG, 12 = MAX6690, 4367 # 13 = ADT7461A/NCT1008, 14 = SA56004 4372 # 13 = ADT7461A/NCT1008, 14 = SA56004, 4373 # 15 = G781 4368 4374 # Registers used: 4369 4375 # 0x03: Configuration … … 4476 4482 return if $mid != 0xa1; # NXP Semiconductor/Philips 4477 4483 return 6 if $cid == 0x00; # SA56004 4484 } 4485 if ($chip == 15) { 4486 return if ($conf & 0x3f) != 0; 4487 return if $rate > 0x08; 4488 return if $mid != 0x47; # GMT 4489 return 8 if $cid == 0x01; # G781 4478 4490 } 4479 4491 return;
