2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-05 00:35:35 +00:00

(mds) add detection for Intel 82801AA and 82801AB I/O Controller Hubs

(part of the 810 chipset for Celeron processors)


git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@527 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Mark D. Studebaker
1999-08-16 01:42:28 +00:00
parent 9e81117fbf
commit b69137b355

View File

@@ -55,6 +55,22 @@ use vars qw(@pci_adapters @chip_ids @undetectable_adapters);
driver => "i2c-piix4",
match => sub { $_[0] =~ /^SMBus PIIX4 adapter at [0-9,a-f]{4}/ },
} ,
{
vendid => 0x8086,
devid => 0x2413,
func => 3,
procid => "Intel 82801AA ICH",
driver => "i2c-i801",
match => sub { $_[0] =~ /^SMBus i801AA adapter at [0-9,a-f]{4}/ },
} ,
{
vendid => 0x8086,
devid => 0x2423,
func => 3,
procid => "Intel 82801AB ICH0",
driver => "i2c-i801",
match => sub { $_[0] =~ /^SMBus i801AB adapter at [0-9,a-f]{4}/ },
} ,
{
vendid => 0x1106,
devid => 0x3040,