Index: /lm-sensors/trunk/prog/detect/sensors-detect
===================================================================
--- /lm-sensors/trunk/prog/detect/sensors-detect	(revision 5316)
+++ /lm-sensors/trunk/prog/detect/sensors-detect	(revision 5333)
@@ -3548,4 +3548,9 @@
                     ($chip == 1 and $reg == 0x40) or
                     ($chip == 2 and ($reg & 0xfe) == 0xc0);
+
+  # Explicitly prevent misdetection of Winbond chips
+  $reg = i2c_smbus_read_byte_data($file, 0x4f);
+  return if $reg == 0xa3 || $reg == 0x5c;
+
   return (6);
 }
Index: /lm-sensors/trunk/CHANGES
===================================================================
--- /lm-sensors/trunk/CHANGES	(revision 5319)
+++ /lm-sensors/trunk/CHANGES	(revision 5333)
@@ -12,4 +12,5 @@
                           Add ITE IT8720 support
                           Add Texas Instruments TMP411 support
+                          Prevent misdetection of W83627DHG on I2C as LM78
 
 2.10.7 (20080701)
