Hello! In the Super IO detection section of sensors-detect, devid = 0xd0 is identifed as PC87371 and 0xdf as PC97371. According to National's datasheets these SIDs correspond to PC87317 and PC97317, respectively. PC87371 and PC97371 do not seem to exist. Some further discussion is available on the LinuxBIOS mailing list in the thread starting at http://www.linuxbios.org/pipermail/linuxbios/2007-December/027954.html Attached is a patch that fixes the typo. /ulf -------------- next part -------------- Fix typo. According to National's datasheet PC87317 has SID = 0xd0 and PC97317 has SID = 0xdf. PC87371/PC97371 do not seem to exist. Signed-off-by: Ulf Jordan <jordan at chalmers.se> Index: sensors-detect =================================================================== --- sensors-detect (revision 5064) +++ sensors-detect (working copy) @@ -1692,12 +1692,12 @@ logdev => 0x0f, }, { - name => "Nat. Semi. PC87371 Super IO", + name => "Nat. Semi. PC87317 Super IO", driver => "not-a-sensor", devid => 0xd0, }, { - name => "Nat. Semi. PC97371 Super IO", + name => "Nat. Semi. PC97317 Super IO", driver => "not-a-sensor", devid => 0xdf, },