2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-09-02 07:15:39 +00:00

sensors-detect: Add detection of SMSC LPC47N217 and SIO10N268

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6057 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Guenter Roeck
2012-06-01 15:47:27 +00:00
parent c94b615773
commit aa504302de
2 changed files with 9 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ SVN HEAD
sensors-detect: Don't choke on systems without PCI sensors-detect: Don't choke on systems without PCI
Avoid probing EDID addresses on graphics cards (#2386) Avoid probing EDID addresses on graphics cards (#2386)
Add detection of NCT6779D and NCT6102D/NCT6106D Add detection of NCT6779D and NCT6102D/NCT6106D
Add detection of SMSC LPC47N217 and SIO10N268
3.3.2 (2012-03-14) 3.3.2 (2012-03-14)
libsensors: Added support for new sysfs attributes libsensors: Added support for new sysfs attributes

View File

@@ -1903,6 +1903,10 @@ use constant FEAT_SMBUS => (1 << 7);
name => "SMSC FDC37N769 Super IO", name => "SMSC FDC37N769 Super IO",
driver => "not-a-sensor", driver => "not-a-sensor",
devid => 0x28, devid => 0x28,
}, {
name => "SMSC LPC47N217 Super IO",
driver => "not-a-sensor",
devid => 0x7a,
}, { }, {
name => "SMSC LPC47N227 Super IO", name => "SMSC LPC47N227 Super IO",
driver => "not-a-sensor", driver => "not-a-sensor",
@@ -1911,6 +1915,10 @@ use constant FEAT_SMBUS => (1 << 7);
name => "SMSC LPC47N237 Super IO", name => "SMSC LPC47N237 Super IO",
driver => "not-a-sensor", driver => "not-a-sensor",
devid => 0x13, devid => 0x13,
}, {
name => "SMSC SIO10N268 Notebook IO",
driver => "not-a-sensor",
devid => 0x5b,
} }
); );