From 25baf5327491b97d5064f27927ff1ac466456837 Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Wed, 7 Mar 2012 18:29:19 -0800 Subject: [PATCH] it87: VIN7 does not depend on bit 2 of reg2C Signed-off-by: Guenter Roeck --- it87.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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)) -- 2.39.5