Skip to content

Commit bc0bbf9

Browse files
Uwe Kleine-Königdtor
authored andcommitted
Input: sx8654 - Convert to i2c's .probe_new()
.probe_new() doesn't get the i2c_device_id * parameter, so determine that explicitly in the probe function. Signed-off-by: Uwe Kleine-König <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent 3d2f818 commit bc0bbf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/input/touchscreen/sx8654.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,9 +306,9 @@ static void sx8654_close(struct input_dev *dev)
306306
}
307307
}
308308

309-
static int sx8654_probe(struct i2c_client *client,
310-
const struct i2c_device_id *id)
309+
static int sx8654_probe(struct i2c_client *client)
311310
{
311+
const struct i2c_device_id *id = i2c_client_get_device_id(client);
312312
struct sx8654 *sx8654;
313313
struct input_dev *input;
314314
int error;
@@ -470,7 +470,7 @@ static struct i2c_driver sx8654_driver = {
470470
.of_match_table = of_match_ptr(sx8654_of_match),
471471
},
472472
.id_table = sx8654_id_table,
473-
.probe = sx8654_probe,
473+
.probe_new = sx8654_probe,
474474
};
475475
module_i2c_driver(sx8654_driver);
476476

0 commit comments

Comments
 (0)