2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

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

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4271 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Rudolf Marek
2006-12-26 11:53:20 +00:00
parent 73922b2883
commit c34c264f97

View File

@@ -5274,10 +5274,15 @@ sub k8temp_pci_detect
}
# Returns: undef if not detected, (9) if detected.
# the device 0xa620 should not be visible on host PCI bus, gateway
# must be used
sub intel_amb_detect
{
return unless exists $pci_list{'8086:a620'};
return 9;
if ((exists $pci_list{'8086:a620'}) ||
(exists $pci_list{'8086:25f0'})) {
return 9;
}
return;
}
# Returns: undef if not detected, (9) if detected.