Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon/smsc47m192: Document the LPC47M292 as supported

The new SMSC LPC47M292 Super-I/O chip includes a hardware monitoring
block which is compatible with those of the LPC47M192.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Hartmut Rick <linux@rick.claranet.de>

authored by

Jean Delvare and committed by
Jean Delvare
00cb4739 5b94f675

+8 -6
+4 -3
Documentation/hwmon/smsc47m192
··· 2 2 ======================== 3 3 4 4 Supported chips: 5 - * SMSC LPC47M192 and LPC47M997 5 + * SMSC LPC47M192, LPC47M15x, LPC47M292 and LPC47M997 6 6 Prefix: 'smsc47m192' 7 7 Addresses scanned: I2C 0x2c - 0x2d 8 8 Datasheet: The datasheet for LPC47M192 is publicly available from 9 9 http://www.smsc.com/ 10 - The LPC47M997 is compatible for hardware monitoring. 10 + The LPC47M15x, LPC47M292 and LPC47M997 are compatible for 11 + hardware monitoring. 11 12 12 13 Author: Hartmut Rick <linux@rick.claranet.de> 13 14 Special thanks to Jean Delvare for careful checking ··· 19 18 ----------- 20 19 21 20 This driver implements support for the hardware sensor capabilities 22 - of the SMSC LPC47M192 and LPC47M997 Super-I/O chips. 21 + of the SMSC LPC47M192 and compatible Super-I/O chips. 23 22 24 23 These chips support 3 temperature channels and 8 voltage inputs 25 24 as well as CPU voltage VID input.
+2 -1
drivers/hwmon/Kconfig
··· 437 437 select HWMON_VID 438 438 help 439 439 If you say yes here you get support for the temperature and 440 - voltage sensors of the SMSC LPC47M192 and LPC47M997 chips. 440 + voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292 441 + and LPC47M997 chips. 441 442 442 443 The fan monitoring and control capabilities of these chips 443 444 are supported by another driver, select
+2 -2
drivers/hwmon/smsc47m192.c
··· 1 1 /* 2 2 smsc47m192.c - Support for hardware monitoring block of 3 - SMSC LPC47M192 and LPC47M997 Super I/O chips 3 + SMSC LPC47M192 and compatible Super I/O chips 4 4 5 5 Copyright (C) 2006 Hartmut Rick <linux@rick.claranet.de> 6 6 ··· 518 518 && (i2c_smbus_read_byte_data(client, 519 519 SMSC47M192_REG_VID4) & 0xfe) == 0x80) { 520 520 dev_info(&adapter->dev, 521 - "found SMSC47M192 or SMSC47M997, " 521 + "found SMSC47M192 or compatible, " 522 522 "version 2, stepping A%d\n", version & 0x0f); 523 523 } else { 524 524 dev_dbg(&adapter->dev,