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

leds: tlc591xx: 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-288-uwe@kleine-koenig.org
parent e916e052
...@@ -145,8 +145,7 @@ static const struct of_device_id of_tlc591xx_leds_match[] = { ...@@ -145,8 +145,7 @@ static const struct of_device_id of_tlc591xx_leds_match[] = {
MODULE_DEVICE_TABLE(of, of_tlc591xx_leds_match); MODULE_DEVICE_TABLE(of, of_tlc591xx_leds_match);
static int static int
tlc591xx_probe(struct i2c_client *client, tlc591xx_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct device_node *np, *child; struct device_node *np, *child;
struct device *dev = &client->dev; struct device *dev = &client->dev;
...@@ -231,7 +230,7 @@ static struct i2c_driver tlc591xx_driver = { ...@@ -231,7 +230,7 @@ static struct i2c_driver tlc591xx_driver = {
.name = "tlc591xx", .name = "tlc591xx",
.of_match_table = of_match_ptr(of_tlc591xx_leds_match), .of_match_table = of_match_ptr(of_tlc591xx_leds_match),
}, },
.probe = tlc591xx_probe, .probe_new = tlc591xx_probe,
.id_table = tlc591xx_id, .id_table = tlc591xx_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