Show
Ignore:
Timestamp:
10/22/08 14:50:32 (4 years ago)
Author:
khali
Message:

Fix detection of Intel 5000 series FB-DIMM AMB.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/prog/detect/sensors-detect

    r5360 r5366  
    21542154  { 
    21552155    name => "Intel AMB FB-DIMM thermal sensor", 
    2156     driver => "to-be-written", 
     2156    driver => "i5k_amb", 
    21572157    detect => sub { intel_amb_detect(); }, 
    21582158  }, 
     
    56525652 
    56535653# Returns: undef if not detected, (9) if detected. 
    5654 # the device 0xa620 should not be visible on host PCI bus, gateway 
    5655 # must be used 
    56565654sub intel_amb_detect 
    56575655{ 
    5658         if ((exists $pci_list{'8086:a620'}) || 
    5659            (exists $pci_list{'8086:25f0'})) { 
     5656        if ((exists $pci_list{'8086:25f0'}) ||  # Intel 5000 
     5657            (exists $pci_list{'8086:4030'})) {  # Intel 5400 
    56605658                return 9; 
    56615659        }