From: Guenter Roeck Date: Thu, 8 Mar 2012 02:29:19 +0000 (-0800) Subject: it87: VIN7 does not depend on bit 2 of reg2C X-Git-Tag: v1.0~87 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;ds=sidebyside;h=25baf5327491b97d5064f27927ff1ac466456837;p=groeck-it87 it87: VIN7 does not depend on bit 2 of reg2C Signed-off-by: Guenter Roeck --- diff --git a/it87.c b/it87.c index fd0f9ff..a7ff7dc 100644 --- a/it87.c +++ b/it87.c @@ -1779,8 +1779,11 @@ static int __init it87_find(unsigned short *address, if ((reg27 & (1 << 1)) || (reg2C & (1 << 2))) ; /* No VIN6 */ - /* VIN7 */ - if ((reg27 & (1 << 2)) || (reg2C & (1 << 2))) + /* + * VIN7 + * Does not depend on bit 2 of Reg2C, contrary to datasheet. + */ + if (reg27 & (1 << 2)) ; /* No VIN7 */ if (reg2C & (1 << 0))