Commit 19301f11 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Lee Jones

mfd: menelaus: 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>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-448-uwe@kleine-koenig.org
parent 10605529
...@@ -1142,8 +1142,7 @@ static inline void menelaus_rtc_init(struct menelaus_chip *m) ...@@ -1142,8 +1142,7 @@ static inline void menelaus_rtc_init(struct menelaus_chip *m)
static struct i2c_driver menelaus_i2c_driver; static struct i2c_driver menelaus_i2c_driver;
static int menelaus_probe(struct i2c_client *client, static int menelaus_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct menelaus_chip *menelaus; struct menelaus_chip *menelaus;
int rev = 0; int rev = 0;
...@@ -1241,7 +1240,7 @@ static struct i2c_driver menelaus_i2c_driver = { ...@@ -1241,7 +1240,7 @@ static struct i2c_driver menelaus_i2c_driver = {
.driver = { .driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
}, },
.probe = menelaus_probe, .probe_new = menelaus_probe,
.remove = menelaus_remove, .remove = menelaus_remove,
.id_table = menelaus_id, .id_table = menelaus_id,
}; };
......
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