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

leds: tca6507: 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-287-uwe@kleine-koenig.org
parent 2c6aaf88
...@@ -728,8 +728,7 @@ static const struct of_device_id __maybe_unused of_tca6507_leds_match[] = { ...@@ -728,8 +728,7 @@ static const struct of_device_id __maybe_unused of_tca6507_leds_match[] = {
}; };
MODULE_DEVICE_TABLE(of, of_tca6507_leds_match); MODULE_DEVICE_TABLE(of, of_tca6507_leds_match);
static int tca6507_probe(struct i2c_client *client, static int tca6507_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct device *dev = &client->dev; struct device *dev = &client->dev;
struct i2c_adapter *adapter; struct i2c_adapter *adapter;
...@@ -809,7 +808,7 @@ static struct i2c_driver tca6507_driver = { ...@@ -809,7 +808,7 @@ static struct i2c_driver tca6507_driver = {
.name = "leds-tca6507", .name = "leds-tca6507",
.of_match_table = of_match_ptr(of_tca6507_leds_match), .of_match_table = of_match_ptr(of_tca6507_leds_match),
}, },
.probe = tca6507_probe, .probe_new = tca6507_probe,
.remove = tca6507_remove, .remove = tca6507_remove,
.id_table = tca6507_id, .id_table = tca6507_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