Changeset 5997 for lm-sensors/trunk/prog/detect
- Timestamp:
- 11/08/11 10:10:11 (7 months ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/prog/detect/sensors-detect (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/prog/detect/sensors-detect
r5996 r5997 1024 1024 i2c_detect => sub { lm63_detect(@_, 3); }, 1025 1025 }, { 1026 name => "National Semiconductor LM96163", 1027 driver => "lm63", 1028 i2c_addrs => [0x4c], 1029 i2c_detect => sub { lm63_detect(@_, 4); }, 1030 }, { 1026 1031 name => "Fintek F75363SG", 1027 1032 driver => "lm63", # Not yet … … 4600 4605 } 4601 4606 4602 # Chip to detect: 1 = LM63, 2 = F75363SG, 3 = LM64 4607 # Chip to detect: 1 = LM63, 2 = F75363SG, 3 = LM64, 4 = LM96163 4603 4608 # Registers used: 4604 4609 # 0xfe: Manufacturer ID … … 4628 4633 return if $mid != 0x01 # National Semiconductor 4629 4634 || $cid != 0x51; # LM64 4635 return if ($conf & 0x18) != 0x00 4636 || ($mask & 0xa4) != 0xa4; 4637 } elsif ($chip == 4) { 4638 return if $mid != 0x01 # National Semiconductor 4639 || $cid != 0x49; # LM96163 4630 4640 return if ($conf & 0x18) != 0x00 4631 4641 || ($mask & 0xa4) != 0xa4;
