Source
40
40
.write_byte = adt7410_i2c_write_byte,
41
41
};
42
42
43
43
static int adt7410_i2c_probe(struct i2c_client *client,
44
44
const struct i2c_device_id *id)
45
45
{
46
46
if (!i2c_check_functionality(client->adapter,
47
47
I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA))
48
48
return -ENODEV;
49
49
50
-
return adt7x10_probe(&client->dev, NULL, &adt7410_i2c_ops);
50
+
return adt7x10_probe(&client->dev, NULL, client->irq, &adt7410_i2c_ops);
51
51
}
52
52
53
53
static int adt7410_i2c_remove(struct i2c_client *client)
54
54
{
55
-
return adt7x10_remove(&client->dev);
55
+
return adt7x10_remove(&client->dev, client->irq);
56
56
}
57
57
58
58
static const struct i2c_device_id adt7410_ids[] = {
59
59
{ "adt7410", 0 },
60
60
{ "adt7420", 0 },
61
61
{}
62
62
};
63
63
MODULE_DEVICE_TABLE(i2c, adt7410_ids);
64
64
65
65
static struct i2c_driver adt7410_driver = {