提交 1ce2619c 编写于 作者: U Uwe Kleine-König 提交者: Dmitry Torokhov

Input: tca8418_keypad - 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: NUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20221118224540.619276-205-uwe@kleine-koenig.orgSigned-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
上级 3da11976
...@@ -259,8 +259,7 @@ static int tca8418_configure(struct tca8418_keypad *keypad_data, ...@@ -259,8 +259,7 @@ static int tca8418_configure(struct tca8418_keypad *keypad_data,
return error; return error;
} }
static int tca8418_keypad_probe(struct i2c_client *client, static int tca8418_keypad_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct device *dev = &client->dev; struct device *dev = &client->dev;
struct tca8418_keypad *keypad_data; struct tca8418_keypad *keypad_data;
...@@ -371,7 +370,7 @@ static struct i2c_driver tca8418_keypad_driver = { ...@@ -371,7 +370,7 @@ static struct i2c_driver tca8418_keypad_driver = {
.name = "tca8418_keypad", .name = "tca8418_keypad",
.of_match_table = tca8418_dt_ids, .of_match_table = tca8418_dt_ids,
}, },
.probe = tca8418_keypad_probe, .probe_new = tca8418_keypad_probe,
.id_table = tca8418_id, .id_table = tca8418_id,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册