Re: [lm-sensors] [PATCH] drivers/hwmon/emc1403.c: add support for emc1412

From: Guenter Roeck
Date: Sun May 11 2014 - 22:21:16 EST


On 05/11/2014 03:40 PM, Guenter Roeck wrote:
[ ... ]


id = i2c_smbus_read_byte_data(client, THERMAL_REVISION_REG);
- if (id != 0x01)
+ if (id != 0x01 && id != 0x04) {
return -ENODEV;

This should be a separate patch, as it applies to emc1403/emc1404 as well,
so we can backport it into -stable.


Also, the chip datasheet suggests that chip revision 3 exists as well.
Given that, I would suggest to replace the revision number check with
something like
if (id < 0x01 || id > 0x04)
return -ENODEV;

Guenter

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/