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

mfd: wm8400-core: 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>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarLee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20221118224540.619276-481-uwe@kleine-koenig.org
parent 8b20feff
...@@ -118,8 +118,7 @@ void wm8400_reset_codec_reg_cache(struct wm8400 *wm8400) ...@@ -118,8 +118,7 @@ void wm8400_reset_codec_reg_cache(struct wm8400 *wm8400)
EXPORT_SYMBOL_GPL(wm8400_reset_codec_reg_cache); EXPORT_SYMBOL_GPL(wm8400_reset_codec_reg_cache);
#if IS_ENABLED(CONFIG_I2C) #if IS_ENABLED(CONFIG_I2C)
static int wm8400_i2c_probe(struct i2c_client *i2c, static int wm8400_i2c_probe(struct i2c_client *i2c)
const struct i2c_device_id *id)
{ {
struct wm8400 *wm8400; struct wm8400 *wm8400;
...@@ -146,7 +145,7 @@ static struct i2c_driver wm8400_i2c_driver = { ...@@ -146,7 +145,7 @@ static struct i2c_driver wm8400_i2c_driver = {
.driver = { .driver = {
.name = "WM8400", .name = "WM8400",
}, },
.probe = wm8400_i2c_probe, .probe_new = wm8400_i2c_probe,
.id_table = wm8400_i2c_id, .id_table = wm8400_i2c_id,
}; };
#endif #endif
......
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