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

mfd: lp3943: 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-434-uwe@kleine-koenig.org
parent daf811fc
...@@ -102,7 +102,7 @@ static const struct regmap_config lp3943_regmap_config = { ...@@ -102,7 +102,7 @@ static const struct regmap_config lp3943_regmap_config = {
.max_register = LP3943_MAX_REGISTERS, .max_register = LP3943_MAX_REGISTERS,
}; };
static int lp3943_probe(struct i2c_client *cl, const struct i2c_device_id *id) static int lp3943_probe(struct i2c_client *cl)
{ {
struct lp3943 *lp3943; struct lp3943 *lp3943;
struct device *dev = &cl->dev; struct device *dev = &cl->dev;
...@@ -140,7 +140,7 @@ MODULE_DEVICE_TABLE(of, lp3943_of_match); ...@@ -140,7 +140,7 @@ MODULE_DEVICE_TABLE(of, lp3943_of_match);
#endif #endif
static struct i2c_driver lp3943_driver = { static struct i2c_driver lp3943_driver = {
.probe = lp3943_probe, .probe_new = lp3943_probe,
.driver = { .driver = {
.name = "lp3943", .name = "lp3943",
.of_match_table = of_match_ptr(lp3943_of_match), .of_match_table = of_match_ptr(lp3943_of_match),
......
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