summaryrefslogtreecommitdiff
path: root/sound/soc/codecs/adau1372-i2c.c
diff options
context:
space:
mode:
authorStephen Kitt <steve@sk2.org>2022-03-25 17:48:28 +0100
committerMark Brown <broonie@kernel.org>2022-04-05 10:23:17 +0100
commitb79bd63a66894ca6c75fb9827dc8f3f7fc1233e2 (patch)
tree7390fe8ea0124366c56af4131f3267424e5d03f7 /sound/soc/codecs/adau1372-i2c.c
parent9f342904216f378e88008bb0ce1ae200a4b99fe8 (diff)
ASoC: ada*, ssm*: use simple i2c probe function
The i2c probe functions here don't use the id information provided in their second argument, so the single-parameter i2c probe function ("probe_new") can be used instead. This avoids scanning the identifier tables during probes. Signed-off-by: Stephen Kitt <steve@sk2.org> Reviewed-by: Nuno Sá <nuno.sa@analog.com> Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com> Link: https://lore.kernel.org/r/20220325164828.1209201-1-steve@sk2.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/adau1372-i2c.c')
-rw-r--r--sound/soc/codecs/adau1372-i2c.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/adau1372-i2c.c b/sound/soc/codecs/adau1372-i2c.c
index fc87a76ff1ee..8ed0ffdedbc9 100644
--- a/sound/soc/codecs/adau1372-i2c.c
+++ b/sound/soc/codecs/adau1372-i2c.c
@@ -14,7 +14,7 @@
#include "adau1372.h"
-static int adau1372_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
+static int adau1372_i2c_probe(struct i2c_client *client)
{
return adau1372_probe(&client->dev,
devm_regmap_init_i2c(client, &adau1372_regmap_config), NULL);
@@ -30,7 +30,7 @@ static struct i2c_driver adau1372_i2c_driver = {
.driver = {
.name = "adau1372",
},
- .probe = adau1372_i2c_probe,
+ .probe_new = adau1372_i2c_probe,
.id_table = adau1372_i2c_ids,
};
module_i2c_driver(adau1372_i2c_driver);