Skip to content

Commit d85d02d

Browse files
Uwe Kleine-Königbroonie
authored andcommitted
regulator: rpi-panel-attiny-regulator: 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> Acked-for-MFD-by: Lee Jones <lee@kernel.org> Acked-for-Backlight-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20221118224540.619276-556-uwe@kleine-koenig.org Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent ed56fa6 commit d85d02d

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

drivers/regulator/rpi-panel-attiny-regulator.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,7 @@ static int attiny_i2c_read(struct i2c_client *client, u8 reg, unsigned int *buf)
282282
/*
283283
* I2C driver interface functions
284284
*/
285-
static int attiny_i2c_probe(struct i2c_client *i2c,
286-
const struct i2c_device_id *id)
285+
static int attiny_i2c_probe(struct i2c_client *i2c)
287286
{
288287
struct backlight_properties props = { };
289288
struct regulator_config config = { };
@@ -399,7 +398,7 @@ static struct i2c_driver attiny_regulator_driver = {
399398
.name = "rpi_touchscreen_attiny",
400399
.of_match_table = of_match_ptr(attiny_dt_ids),
401400
},
402-
.probe = attiny_i2c_probe,
401+
.probe_new = attiny_i2c_probe,
403402
.remove = attiny_i2c_remove,
404403
};
405404

0 commit comments

Comments
 (0)