|
@@ -45,8 +45,7 @@
|
|
|
|
|
|
|
|
|
|
/* Addresses to scan */
|
|
/* Addresses to scan */
|
|
-static unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
|
|
|
|
- 0x2e, 0x2f, I2C_CLIENT_END };
|
|
|
|
|
|
+static unsigned short normal_i2c[] = { 0x2d, I2C_CLIENT_END };
|
|
static unsigned short isa_address;
|
|
static unsigned short isa_address;
|
|
|
|
|
|
/* Insmod parameters */
|
|
/* Insmod parameters */
|
|
@@ -830,6 +829,11 @@ static int it87_detect(struct i2c_adapter *adapter, int address, int kind)
|
|
if ((err = i2c_attach_client(new_client)))
|
|
if ((err = i2c_attach_client(new_client)))
|
|
goto ERROR2;
|
|
goto ERROR2;
|
|
|
|
|
|
|
|
+ if (!is_isa)
|
|
|
|
+ dev_info(&new_client->dev, "The I2C interface to IT87xxF "
|
|
|
|
+ "hardware monitoring chips is deprecated. Please "
|
|
|
|
+ "report if you still rely on it.\n");
|
|
|
|
+
|
|
/* Check PWM configuration */
|
|
/* Check PWM configuration */
|
|
enable_pwm_interface = it87_check_pwm(new_client);
|
|
enable_pwm_interface = it87_check_pwm(new_client);
|
|
|
|
|