Changeset 4271

Show
Ignore:
Timestamp:
12/26/06 12:53:20 (6 years ago)
Author:
ruik
Message:

The PCI device for AMB is not accessible directly from PCI bus, gateway must be used. Ticket #2143

Files:
1 modified

Legend:

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

    r4269 r4271  
    52755275 
    52765276# Returns: undef if not detected, (9) if detected. 
     5277# the device 0xa620 should not be visible on host PCI bus, gateway 
     5278# must be used 
    52775279sub intel_amb_detect 
    52785280{ 
    5279         return unless exists $pci_list{'8086:a620'}; 
    5280         return 9; 
     5281        if ((exists $pci_list{'8086:a620'}) || 
     5282           (exists $pci_list{'8086:25f0'})) { 
     5283                return 9; 
     5284        } 
     5285        return; 
    52815286} 
    52825287