aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/codecs/max98095.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2023-04-25 11:57:16 +0200
committerMark Brown <broonie@kernel.org>2023-05-08 08:48:49 +0900
commit9abcd24002bf7997be752b6b48b137c4db3a609b (patch)
tree95d91041135855d19b482352472a214b620ba871 /sound/soc/codecs/max98095.c
parentASoC: amd: ps: Update copyright notice (diff)
downloadwireguard-linux-9abcd24002bf7997be752b6b48b137c4db3a609b.tar.xz
wireguard-linux-9abcd24002bf7997be752b6b48b137c4db3a609b.zip
ASoC: Switch i2c drivers back to use .probe()
After commit b8a1a4cd5a98 ("i2c: Provide a temporary .probe_new() call-back type"), all drivers being converted to .probe_new() and then 03c835f498b5 ("i2c: Switch .probe() to not take an id parameter") convert back to (the new) .probe() to be able to eventually drop .probe_new() from struct i2c_driver. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de Link: https://lore.kernel.org/r/20230425095716.331419-1-u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org
Diffstat (limited to 'sound/soc/codecs/max98095.c')
-rw-r--r--sound/soc/codecs/max98095.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c
index 44aa58fcc23f..7e525d49328d 100644
--- a/sound/soc/codecs/max98095.c
+++ b/sound/soc/codecs/max98095.c
@@ -2155,7 +2155,7 @@ static struct i2c_driver max98095_i2c_driver = {
.name = "max98095",
.of_match_table = of_match_ptr(max98095_of_match),
},
- .probe_new = max98095_i2c_probe,
+ .probe = max98095_i2c_probe,
.id_table = max98095_i2c_id,
};