Changeset 5933 for lm-sensors/trunk/prog

Show
Ignore:
Timestamp:
02/18/11 13:55:36 (15 months ago)
Author:
groeck
Message:

Add support for AMD Family 12h and 14h thermal sensors to sensors-detect

Files:
1 modified

Legend:

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

    r5932 r5933  
    21282128                driver => "k10temp", 
    21292129                detect => \&fam11h_pci_detect, 
     2130        }, { 
     2131                name => "AMD Family 12h and 14h thermal sensors", 
     2132                driver => "k10temp", 
     2133                detect => \&fam12h_14h_pci_detect, 
    21302134        }, { 
    21312135                name => "Intel digital thermal sensor", 
     
    60296033} 
    60306034 
     6035sub fam12h_14h_pci_detect 
     6036{ 
     6037        return unless exists $pci_list{'1022:1703'}; 
     6038        return 9; 
     6039} 
     6040 
    60316041sub intel_amb_detect 
    60326042{