Changeset 4964
- Timestamp:
- 10/20/07 10:34:25 (6 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4963 r4964 44 44 Add AMD K10 CPU sensor detection 45 45 Fix SMSC LPC47B357/M967 detection 46 Select the right driver for FSC chips 46 47 47 48 -
lm-sensors/trunk/prog/detect/sensors-detect
r4963 r4964 1472 1472 # Special case chip information goes here and would be included in 1473 1473 # the chip_special_cases routine below 1474 use vars qw(@chip_kern24_ids @chip_kern26_ids @chip_kern_lt_26_24_ids1475 @chip_ kern_gt_eq_26_24_ids);1474 use vars qw(@chip_kern24_ids @chip_kern26_ids 1475 @chip_oldfsc_ids @chip_fschmd_ids); 1476 1476 @chip_kern24_ids = ( 1477 1477 { … … 1529 1529 1530 1530 # sigh special case for old seperate FSC drivers to new merged one mapping 1531 @chip_ kern_lt_26_24_ids = (1531 @chip_oldfsc_ids = ( 1532 1532 { 1533 1533 name => "FSC Poseidon I", … … 1550 1550 ); 1551 1551 1552 @chip_ kern_gt_eq_26_24_ids = (1552 @chip_fschmd_ids = ( 1553 1553 { 1554 1554 name => "FSC Poseidon I", … … 3476 3476 # chip_ids detection list 3477 3477 if (kernel_version_at_least(2, 6, 24)) { 3478 push @chip_ids, @chip_ kern_gt_eq_26_24_ids;3478 push @chip_ids, @chip_fschmd_ids; 3479 3479 } else { 3480 push @chip_ids, @chip_ kern_lt_26_24_ids;3480 push @chip_ids, @chip_oldfsc_ids; 3481 3481 } 3482 3482
