On Sun, 23 Oct 2022 15:23:01 +0200 Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> wrote: > The probe function doesn't make use of the i2c_device_id * parameter so it > can be trivially converted. > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@xxxxxxxxxxxxxx> Applied > --- > drivers/iio/magnetometer/st_magn_i2c.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/iio/magnetometer/st_magn_i2c.c b/drivers/iio/magnetometer/st_magn_i2c.c > index c5d8c303db4e..b4098d3b3813 100644 > --- a/drivers/iio/magnetometer/st_magn_i2c.c > +++ b/drivers/iio/magnetometer/st_magn_i2c.c > @@ -54,8 +54,7 @@ static const struct of_device_id st_magn_of_match[] = { > }; > MODULE_DEVICE_TABLE(of, st_magn_of_match); > > -static int st_magn_i2c_probe(struct i2c_client *client, > - const struct i2c_device_id *id) > +static int st_magn_i2c_probe(struct i2c_client *client) > { > const struct st_sensor_settings *settings; > struct st_sensor_data *mdata; > @@ -107,7 +106,7 @@ static struct i2c_driver st_magn_driver = { > .name = "st-magn-i2c", > .of_match_table = st_magn_of_match, > }, > - .probe = st_magn_i2c_probe, > + .probe_new = st_magn_i2c_probe, > .id_table = st_magn_id_table, > }; > module_i2c_driver(st_magn_driver);