hwmon: lm75 - HACK, make lm75 driver recognize GMT G751

the GMT G751 doesn't mirror registers on higher addresses...

hopefully, the new-style lm75 patches will get merged, then this hack isn't
needed anymore

Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>

diff --git a/drivers/hwmon/lm75.c b/drivers/hwmon/lm75.c
index 37a8cc0..2f882dc 100644
--- a/drivers/hwmon/lm75.c
+++ b/drivers/hwmon/lm75.c
@@ -182,17 +182,17 @@ static int lm75_detect(struct i2c_adapter *adapter, int address, int kind)
 		 || i2c_smbus_read_word_data(new_client, 6) != os
 		 || i2c_smbus_read_word_data(new_client, 7) != os)
 		 	goto exit_free;
-
 		/* Unused bits */
 		if (conf & 0xe0)
 		 	goto exit_free;
-
+#if 0
 		/* Addresses cycling */
 		for (i = 8; i < 0xff; i += 8)
 			if (i2c_smbus_read_byte_data(new_client, i + 1) != conf
 			 || i2c_smbus_read_word_data(new_client, i + 2) != hyst
 			 || i2c_smbus_read_word_data(new_client, i + 3) != os)
 				goto exit_free;
+#endif
 	}
 
 	/* Determine the chip type - only one kind supported! */

