From 09059c2292ffed119fa50d0cb2cf7cc3e8fee358 Mon Sep 17 00:00:00 2001 From: "Mark M. Hoffman" Date: Tue, 17 Sep 2002 06:18:40 +0000 Subject: [PATCH] added detection for SiS645DX and SiS735 git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@1533 7894878c-1315-0410-8ee3-d5d059ff63e0 --- prog/detect/sensors-detect | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect index f22129ff..1533f6ae 100755 --- a/prog/detect/sensors-detect +++ b/prog/detect/sensors-detect @@ -210,6 +210,22 @@ use vars qw(@pci_adapters @chip_ids @undetectable_adapters @dmidecode); driver => "i2c-sis645", match => sub { $_[0] =~ /^SMBus SiS645 adapter at 0x[0-9,a-f]{4}/ }, } , + { + vendid => 0x1039, + devid => 0x0646, + func => 0, + procid => "Silicon Integrated Systems SIS645DX", + driver => "i2c-sis645", + match => sub { $_[0] =~ /^SMBus SiS645 adapter at 0x[0-9,a-f]{4}/ }, + } , + { + vendid => 0x1039, + devid => 0x0735, + func => 0, + procid => "Silicon Integrated Systems SIS735", + driver => "i2c-sis645", + match => sub { $_[0] =~ /^SMBus SiS645 adapter at 0x[0-9,a-f]{4}/ }, + } , { vendid => 0x1039, devid => 0x0730,