Changeset 4964

Show
Ignore:
Timestamp:
10/20/07 10:34:25 (6 years ago)
Author:
khali
Message:

Rename fsc-specific chip arrays to something clearer.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r4963 r4964  
    4444                          Add AMD K10 CPU sensor detection  
    4545                          Fix SMSC LPC47B357/M967 detection 
     46                          Select the right driver for FSC chips 
    4647 
    4748 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r4963 r4964  
    14721472# Special case chip information goes here and would be included in 
    14731473# the chip_special_cases routine below 
    1474 use vars qw(@chip_kern24_ids @chip_kern26_ids @chip_kern_lt_26_24_ids 
    1475             @chip_kern_gt_eq_26_24_ids); 
     1474use vars qw(@chip_kern24_ids @chip_kern26_ids 
     1475            @chip_oldfsc_ids @chip_fschmd_ids); 
    14761476@chip_kern24_ids = ( 
    14771477     { 
     
    15291529 
    15301530# sigh special case for old seperate FSC drivers to new merged one mapping 
    1531 @chip_kern_lt_26_24_ids = ( 
     1531@chip_oldfsc_ids = ( 
    15321532     { 
    15331533       name => "FSC Poseidon I", 
     
    15501550); 
    15511551 
    1552 @chip_kern_gt_eq_26_24_ids = ( 
     1552@chip_fschmd_ids = ( 
    15531553     { 
    15541554       name => "FSC Poseidon I", 
     
    34763476        # chip_ids detection list 
    34773477        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; 
    34793479        } else { 
    3480                 push @chip_ids, @chip_kern_lt_26_24_ids; 
     3480                push @chip_ids, @chip_oldfsc_ids; 
    34813481        } 
    34823482