Commit b37a4c1b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Dmitry Torokhov

Input: qt2160 - Convert to i2c's .probe_new()

The probe function doesn't make use of the i2c_device_id * parameter so it
can be trivially converted.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20221118224540.619276-203-uwe@kleine-koenig.orgSigned-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent ee27fe8a
...@@ -338,8 +338,7 @@ static bool qt2160_identify(struct i2c_client *client) ...@@ -338,8 +338,7 @@ static bool qt2160_identify(struct i2c_client *client)
return true; return true;
} }
static int qt2160_probe(struct i2c_client *client, static int qt2160_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct qt2160_data *qt2160; struct qt2160_data *qt2160;
struct input_dev *input; struct input_dev *input;
...@@ -461,7 +460,7 @@ static struct i2c_driver qt2160_driver = { ...@@ -461,7 +460,7 @@ static struct i2c_driver qt2160_driver = {
}, },
.id_table = qt2160_idtable, .id_table = qt2160_idtable,
.probe = qt2160_probe, .probe_new = qt2160_probe,
.remove = qt2160_remove, .remove = qt2160_remove,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment