leds: lp8860: 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-284-uwe@kleine-koenig.org
This commit is contained in:
Родитель
bc14a85ec8
Коммит
c3dab3a932
|
@ -375,8 +375,7 @@ static const struct regmap_config lp8860_eeprom_regmap_config = {
|
||||||
.cache_type = REGCACHE_NONE,
|
.cache_type = REGCACHE_NONE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int lp8860_probe(struct i2c_client *client,
|
static int lp8860_probe(struct i2c_client *client)
|
||||||
const struct i2c_device_id *id)
|
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
struct lp8860_led *led;
|
struct lp8860_led *led;
|
||||||
|
@ -480,7 +479,7 @@ static struct i2c_driver lp8860_driver = {
|
||||||
.name = "lp8860",
|
.name = "lp8860",
|
||||||
.of_match_table = of_lp8860_leds_match,
|
.of_match_table = of_lp8860_leds_match,
|
||||||
},
|
},
|
||||||
.probe = lp8860_probe,
|
.probe_new = lp8860_probe,
|
||||||
.remove = lp8860_remove,
|
.remove = lp8860_remove,
|
||||||
.id_table = lp8860_id,
|
.id_table = lp8860_id,
|
||||||
};
|
};
|
||||||
|
|
Загрузка…
Ссылка в новой задаче