Changeset 5769

Show
Ignore:
Timestamp:
09/14/09 12:50:45 (4 years ago)
Author:
khali
Message:

Drop AMD K10 detection (unreliable sensors).
Add detection for AMD Family 11h thermal sensors.

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5765 r5769  
    1414                  Support upcoming sysfs path to i2c adapters 
    1515                  Rename the modprobe configuration file to lm_sensors.conf 
     16                  Drop AMD K10 detection (unreliable sensors) 
     17                  Add detection for AMD Family 11h thermal sensors 
    1618  sysconfig-lm_sensors-convert: Fix exit code 
    1719 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5760 r5769  
    18441844                detect => \&k8temp_pci_detect, 
    18451845        }, { 
    1846                 name => "AMD K10 thermal sensors", 
     1846                name => "AMD Family 11h thermal sensors", 
    18471847                driver => "to-be-written", 
    1848                 detect => \&k10temp_pci_detect, 
     1848                detect => \&fam11h_pci_detect, 
    18491849        }, { 
    18501850                name => "Intel Core family thermal sensor", 
     
    52515251} 
    52525252 
    5253 sub k10temp_pci_detect 
    5254 { 
    5255         return unless exists $pci_list{'1022:1203'}; 
     5253sub fam11h_pci_detect 
     5254{ 
     5255        return unless exists $pci_list{'1022:1303'}; 
    52565256        return 9; 
    52575257}