mfd: stw481x: 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-464-uwe@kleine-koenig.org
This commit is contained in:
parent
39cabdc8fb
commit
40ee15f763
|
@ -173,8 +173,7 @@ static const struct regmap_config stw481x_regmap_config = {
|
||||||
.val_bits = 8,
|
.val_bits = 8,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int stw481x_probe(struct i2c_client *client,
|
static int stw481x_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
struct stw481x *stw481x;
|
struct stw481x *stw481x;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -240,7 +239,7 @@ static struct i2c_driver stw481x_driver = {
|
||||||
.name = "stw481x",
|
.name = "stw481x",
|
||||||
.of_match_table = stw481x_match,
|
.of_match_table = stw481x_match,
|
||||||
},
|
},
|
||||||
.probe = stw481x_probe,
|
.probe_new = stw481x_probe,
|
||||||
.id_table = stw481x_id,
|
.id_table = stw481x_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue