Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

regulator: rtq2208: Switch back to use struct i2c_driver's .probe()

struct i2c_driver::probe_new is about to go away. Switch the driver to
use the probe callback with the same prototype.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230814210759.26395-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Uwe Kleine-König and committed by
Mark Brown
edff54ac c4189205

+1 -1
+1 -1
drivers/regulator/rtq2208-regulator.c
··· 574 574 .name = "rtq2208", 575 575 .of_match_table = rtq2208_device_tables, 576 576 }, 577 - .probe_new = rtq2208_probe, 577 + .probe = rtq2208_probe, 578 578 }; 579 579 module_i2c_driver(rtq2208_driver); 580 580