diff options
Diffstat (limited to 'drivers/hwmon/adt7475.c')
-rw-r--r-- | drivers/hwmon/adt7475.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c index b5a95193c69..41d3e38f9ce 100644 --- a/drivers/hwmon/adt7475.c +++ b/drivers/hwmon/adt7475.c | |||
@@ -974,14 +974,12 @@ static int adt7475_detect(struct i2c_client *client, int kind, | |||
974 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | 974 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
975 | return -ENODEV; | 975 | return -ENODEV; |
976 | 976 | ||
977 | if (kind <= 0) { | 977 | if (adt7475_read(REG_VENDID) != 0x41 || |
978 | if (adt7475_read(REG_VENDID) != 0x41 || | 978 | adt7475_read(REG_DEVID) != 0x75) { |
979 | adt7475_read(REG_DEVID) != 0x75) { | 979 | dev_err(&adapter->dev, |
980 | dev_err(&adapter->dev, | 980 | "Couldn't detect a adt7475 part at 0x%02x\n", |
981 | "Couldn't detect a adt7475 part at 0x%02x\n", | 981 | (unsigned int)client->addr); |
982 | (unsigned int)client->addr); | 982 | return -ENODEV; |
983 | return -ENODEV; | ||
984 | } | ||
985 | } | 983 | } |
986 | 984 | ||
987 | strlcpy(info->type, adt7475_id[0].name, I2C_NAME_SIZE); | 985 | strlcpy(info->type, adt7475_id[0].name, I2C_NAME_SIZE); |