Changeset 5366
- Timestamp:
- 10/22/08 14:50:32 (5 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5365 r5366 6 6 sensors-detect: Fix detection of ADT7463 and LM96000 7 7 Add VIA VX800/VX820 support 8 Fix detection of Intel 5000 series FB-DIMM AMB 8 9 9 10 3.0.3 (2008-09-28) -
lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect
r5360 r5366 2154 2154 { 2155 2155 name => "Intel AMB FB-DIMM thermal sensor", 2156 driver => " to-be-written",2156 driver => "i5k_amb", 2157 2157 detect => sub { intel_amb_detect(); }, 2158 2158 }, … … 5652 5652 5653 5653 # Returns: undef if not detected, (9) if detected. 5654 # the device 0xa620 should not be visible on host PCI bus, gateway5655 # must be used5656 5654 sub intel_amb_detect 5657 5655 { 5658 if ((exists $pci_list{'8086: a620'}) ||5659 (exists $pci_list{'8086:25f0'})) {5656 if ((exists $pci_list{'8086:25f0'}) || # Intel 5000 5657 (exists $pci_list{'8086:4030'})) { # Intel 5400 5660 5658 return 9; 5661 5659 }
