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

add support for upcoming ICH7 based on information from

Jason Gaston


git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2793 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Mark D. Studebaker
2004-12-08 21:20:13 +00:00
parent b6e48cb30f
commit 6773d8e4e0
4 changed files with 34 additions and 10 deletions

View File

@@ -134,7 +134,15 @@ use vars qw(@pci_adapters @chip_ids @superio_ids);
vendid => 0x8086,
devid => 0x266A,
func => 3,
procid => "Intel ICH6",
procid => "Intel 82801FB ICH6",
driver => "i2c-i801",
match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9a-f]{4}/ },
} ,
{
vendid => 0x8086,
devid => 0x27DA,
func => 3,
procid => "Intel ICH7",
driver => "i2c-i801",
match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9a-f]{4}/ },
} ,