mfd: da9055-i2c: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20221118224540.619276-428-uwe@kleine-koenig.org
This commit is contained in:
parent
1ebf79726a
commit
d429772913
|
@ -15,8 +15,7 @@
|
|||
|
||||
#include <linux/mfd/da9055/core.h>
|
||||
|
||||
static int da9055_i2c_probe(struct i2c_client *i2c,
|
||||
const struct i2c_device_id *id)
|
||||
static int da9055_i2c_probe(struct i2c_client *i2c)
|
||||
{
|
||||
struct da9055 *da9055;
|
||||
int ret;
|
||||
|
@ -67,7 +66,7 @@ static const struct of_device_id da9055_of_match[] = {
|
|||
};
|
||||
|
||||
static struct i2c_driver da9055_i2c_driver = {
|
||||
.probe = da9055_i2c_probe,
|
||||
.probe_new = da9055_i2c_probe,
|
||||
.remove = da9055_i2c_remove,
|
||||
.id_table = da9055_i2c_id,
|
||||
.driver = {
|
||||
|
|
Loading…
Reference in New Issue