aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/adt7410.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/hwmon/adt7410.c b/drivers/hwmon/adt7410.c
index 4ae16e05ca28..99f6d3239cba 100644
--- a/drivers/hwmon/adt7410.c
+++ b/drivers/hwmon/adt7410.c
@@ -78,10 +78,6 @@ enum adt7410_type { /* keep sorted in alphabetical order */
78 adt7410, 78 adt7410,
79}; 79};
80 80
81/* Addresses scanned */
82static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
83 I2C_CLIENT_END };
84
85static const u8 ADT7410_REG_TEMP[4] = { 81static const u8 ADT7410_REG_TEMP[4] = {
86 ADT7410_TEMPERATURE, /* input */ 82 ADT7410_TEMPERATURE, /* input */
87 ADT7410_T_ALARM_HIGH, /* high */ 83 ADT7410_T_ALARM_HIGH, /* high */
@@ -453,7 +449,7 @@ static struct i2c_driver adt7410_driver = {
453 .probe = adt7410_probe, 449 .probe = adt7410_probe,
454 .remove = adt7410_remove, 450 .remove = adt7410_remove,
455 .id_table = adt7410_ids, 451 .id_table = adt7410_ids,
456 .address_list = normal_i2c, 452 .address_list = I2C_ADDRS(0x48, 0x49, 0x4a, 0x4b),
457}; 453};
458 454
459module_i2c_driver(adt7410_driver); 455module_i2c_driver(adt7410_driver);