Skip to content

Commit

Permalink
hwmon: (emc1403) Fix I2C address range
Browse files Browse the repository at this point in the history
I2C address range included 0x2a, which the chips do not support.
Replace with 0x29 which is supported but was missing.

Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Acked-by: Jean Delvare <khali@linux-fr.org>
  • Loading branch information
Guenter Roeck committed Feb 9, 2011
1 parent 2778fb1 commit bcf721d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/hwmon/emc1403.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ static int emc1403_remove(struct i2c_client *client)
}

static const unsigned short emc1403_address_list[] = {
0x18, 0x2a, 0x4c, 0x4d, I2C_CLIENT_END
0x18, 0x29, 0x4c, 0x4d, I2C_CLIENT_END
};

static const struct i2c_device_id emc1403_idtable[] = {
Expand Down

0 comments on commit bcf721d

Please sign in to comment.