Show
Ignore:
Timestamp:
06/01/10 14:27:28 (21 months ago)
Author:
khali
Message:

Fix detection of RB-C3 AMD Family 10h CPU. This core is only used in
packages not affected by erratum 319, so we don't have to use the
unreliable DDR2 vs. DDR3 approach for it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5833 r5837  
    54725472                next if $probecpu->{model} < 4;         # DR-B* 
    54735473                next if $probecpu->{model} == 8;        # HY-D0 
    5474                 if ($probecpu->{model} == 4) {          # RB-C* 
     5474                if ($probecpu->{model} == 4 && $probecpu->{stepping} <= 2) {    # RB-C2 
    54755475                        my @dram_cfg = split /\n/, `setpci -d 1022:1202 94.L 2>/dev/null`; 
    54765476                        next unless @dram_cfg >= 1;