We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9d70a commit 0a3098dCopy full SHA for 0a3098d
drivers/input/touchscreen/wacom_i2c.c
@@ -162,8 +162,7 @@ static void wacom_i2c_close(struct input_dev *dev)
162
disable_irq(client->irq);
163
}
164
165
-static int wacom_i2c_probe(struct i2c_client *client,
166
- const struct i2c_device_id *id)
+static int wacom_i2c_probe(struct i2c_client *client)
167
{
168
struct device *dev = &client->dev;
169
struct wacom_i2c *wac_i2c;
@@ -265,7 +264,7 @@ static struct i2c_driver wacom_i2c_driver = {
265
264
.pm = &wacom_i2c_pm,
266
},
267
268
- .probe = wacom_i2c_probe,
+ .probe_new = wacom_i2c_probe,
269
.id_table = wacom_i2c_id,
270
};
271
module_i2c_driver(wacom_i2c_driver);
0 commit comments