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 05b8465 commit deae576Copy full SHA for deae576
drivers/input/touchscreen/exc3000.c
@@ -145,8 +145,7 @@ static irqreturn_t exc3000_interrupt(int irq, void *dev_id)
145
return IRQ_HANDLED;
146
}
147
148
-static int exc3000_probe(struct i2c_client *client,
149
- const struct i2c_device_id *id)
+static int exc3000_probe(struct i2c_client *client)
150
{
151
struct exc3000_data *data;
152
struct input_dev *input;
@@ -210,7 +209,7 @@ static struct i2c_driver exc3000_driver = {
210
209
.of_match_table = of_match_ptr(exc3000_of_match),
211
},
212
.id_table = exc3000_id,
213
- .probe = exc3000_probe,
+ .probe_new = exc3000_probe,
214
};
215
216
module_i2c_driver(exc3000_driver);
0 commit comments