Commit 88ade2ab authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mark Brown

ASoC: codecs: tas2780: 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>
Link: https://lore.kernel.org/r/20221118224540.619276-605-uwe@kleine-koenig.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 784252ba
...@@ -598,8 +598,7 @@ static int tas2780_parse_dt(struct device *dev, struct tas2780_priv *tas2780) ...@@ -598,8 +598,7 @@ static int tas2780_parse_dt(struct device *dev, struct tas2780_priv *tas2780)
return 0; return 0;
} }
static int tas2780_i2c_probe(struct i2c_client *client, static int tas2780_i2c_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
struct tas2780_priv *tas2780; struct tas2780_priv *tas2780;
int result; int result;
...@@ -653,7 +652,7 @@ static struct i2c_driver tas2780_i2c_driver = { ...@@ -653,7 +652,7 @@ static struct i2c_driver tas2780_i2c_driver = {
.name = "tas2780", .name = "tas2780",
.of_match_table = of_match_ptr(tas2780_of_match), .of_match_table = of_match_ptr(tas2780_of_match),
}, },
.probe = tas2780_i2c_probe, .probe_new = tas2780_i2c_probe,
.id_table = tas2780_i2c_id, .id_table = tas2780_i2c_id,
}; };
module_i2c_driver(tas2780_i2c_driver); module_i2c_driver(tas2780_i2c_driver);
......
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