staging: iio: Switch i2c drivers back to use .probe()
After commitb8a1a4cd5a
("i2c: Provide a temporary .probe_new() call-back type"), all drivers being converted to .probe_new() and then03c835f498
("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/20230524151646.486847-2-u.kleine-koenig@pengutronix.de Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
8b5e7c33b3
commit
8ff55fe553
|
@ -138,7 +138,7 @@ static struct i2c_driver adt7316_driver = {
|
|||
.of_match_table = adt7316_of_match,
|
||||
.pm = ADT7316_PM_OPS,
|
||||
},
|
||||
.probe_new = adt7316_i2c_probe,
|
||||
.probe = adt7316_i2c_probe,
|
||||
.id_table = adt7316_i2c_id,
|
||||
};
|
||||
module_i2c_driver(adt7316_driver);
|
||||
|
|
|
@ -781,7 +781,7 @@ static struct i2c_driver ad5933_driver = {
|
|||
.name = "ad5933",
|
||||
.of_match_table = ad5933_of_match,
|
||||
},
|
||||
.probe_new = ad5933_probe,
|
||||
.probe = ad5933_probe,
|
||||
.id_table = ad5933_id,
|
||||
};
|
||||
module_i2c_driver(ad5933_driver);
|
||||
|
|
Loading…
Reference in New Issue