From 1b4d863eaa23c02e97c1ba054f7c15290e6ec16f Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 19 Dec 2007 13:27:40 +0000 Subject: [PATCH] Add support for the 82801AA (ICH). git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@5082 7894878c-1315-0410-8ee3-d5d059ff63e0 --- CHANGES | 1 + prog/hotplug/unhide_ICH_SMBus | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 21b8dd94..6f1bee2b 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,7 @@ SVN sensors.conf.eg: Fix voltage value references (g520sm, lm80, pc87366) sensors-detect: Drop PCA9540 detection Improve sysconfig and modprobe.d integration + unhide_ICH_SMBus: Add support for the 82801AA (ICH) 3.0.0 (2007-11-24) Makefile: Fix MODULE_DIR usage in etc diff --git a/prog/hotplug/unhide_ICH_SMBus b/prog/hotplug/unhide_ICH_SMBus index ec8690f6..3b0034a6 100755 --- a/prog/hotplug/unhide_ICH_SMBus +++ b/prog/hotplug/unhide_ICH_SMBus @@ -10,6 +10,7 @@ # # Supports the following Intel ICH chipsets: # PCI ID +# ICH 8086:2410 # ICH2 8086:2440 # ICH2-M 8086:244C # ICH3 8086:2480 @@ -33,10 +34,10 @@ if [ -n "$smbus" ] ; then exit fi -intel=`lspci -n -s $device.0 | grep -i '8086:24[48CD][0C]'` +intel=`lspci -n -s $device.0 | grep -i '8086:24[148CD][0C]'` if [ -z "$intel" ] ; then echo "Not for your chipset - Intel (ICH) only" - echo "Supported: ICH2, ICH2-M, ICH3, ICH3-M, ICH4, ICH4-M, ICH5" + echo "Supported: ICH, ICH2, ICH2-M, ICH3, ICH3-M, ICH4, ICH4-M, ICH5" exit 255; fi modprobe fakephp &> /dev/null