backlight: Switch i2c drivers back to use .probe()

After commit b8a1a4cd5a ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
03c835f498 ("i2c: Switch .probe() to not take an id parameter") convert
back to (the new) .probe() to be able to eventually drop .probe_new() from
struct i2c_driver.

Also fix two indention inconsistencies in the neighbourhood.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20230521143844.375244-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Lee Jones <lee@kernel.org>
This commit is contained in:
Uwe Kleine-König 2023-05-21 16:38:44 +02:00 committed by Lee Jones
parent ae9c48087f
commit 29554f2e91
9 changed files with 11 additions and 11 deletions

View file

@ -803,8 +803,8 @@ static struct i2c_driver adp8860_driver = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
.pm = &adp8860_i2c_pm_ops, .pm = &adp8860_i2c_pm_ops,
}, },
.probe_new = adp8860_probe, .probe = adp8860_probe,
.remove = adp8860_remove, .remove = adp8860_remove,
.id_table = adp8860_id, .id_table = adp8860_id,
}; };

View file

@ -973,8 +973,8 @@ static struct i2c_driver adp8870_driver = {
.name = KBUILD_MODNAME, .name = KBUILD_MODNAME,
.pm = &adp8870_i2c_pm_ops, .pm = &adp8870_i2c_pm_ops,
}, },
.probe_new = adp8870_probe, .probe = adp8870_probe,
.remove = adp8870_remove, .remove = adp8870_remove,
.id_table = adp8870_id, .id_table = adp8870_id,
}; };

View file

@ -392,7 +392,7 @@ static struct i2c_driver arcxcnn_driver = {
.name = "arcxcnn_bl", .name = "arcxcnn_bl",
.of_match_table = arcxcnn_dt_ids, .of_match_table = arcxcnn_dt_ids,
}, },
.probe_new = arcxcnn_probe, .probe = arcxcnn_probe,
.remove = arcxcnn_remove, .remove = arcxcnn_remove,
.id_table = arcxcnn_ids, .id_table = arcxcnn_ids,
}; };

View file

@ -192,7 +192,7 @@ static struct i2c_driver bd6107_driver = {
.driver = { .driver = {
.name = "bd6107", .name = "bd6107",
}, },
.probe_new = bd6107_probe, .probe = bd6107_probe,
.remove = bd6107_remove, .remove = bd6107_remove,
.id_table = bd6107_ids, .id_table = bd6107_ids,
}; };

View file

@ -196,7 +196,7 @@ static struct i2c_driver ktz8866_driver = {
.name = "ktz8866", .name = "ktz8866",
.of_match_table = ktz8866_match_table, .of_match_table = ktz8866_match_table,
}, },
.probe_new = ktz8866_probe, .probe = ktz8866_probe,
.remove = ktz8866_remove, .remove = ktz8866_remove,
.id_table = ktz8866_ids, .id_table = ktz8866_ids,
}; };

View file

@ -620,7 +620,7 @@ static struct i2c_driver lm3630a_i2c_driver = {
.name = LM3630A_NAME, .name = LM3630A_NAME,
.of_match_table = lm3630a_match_table, .of_match_table = lm3630a_match_table,
}, },
.probe_new = lm3630a_probe, .probe = lm3630a_probe,
.remove = lm3630a_remove, .remove = lm3630a_remove,
.id_table = lm3630a_id, .id_table = lm3630a_id,
}; };

View file

@ -411,7 +411,7 @@ static struct i2c_driver lm3639_i2c_driver = {
.driver = { .driver = {
.name = LM3639_NAME, .name = LM3639_NAME,
}, },
.probe_new = lm3639_probe, .probe = lm3639_probe,
.remove = lm3639_remove, .remove = lm3639_remove,
.id_table = lm3639_id, .id_table = lm3639_id,
}; };

View file

@ -587,7 +587,7 @@ static struct i2c_driver lp855x_driver = {
.of_match_table = of_match_ptr(lp855x_dt_ids), .of_match_table = of_match_ptr(lp855x_dt_ids),
.acpi_match_table = ACPI_PTR(lp855x_acpi_match), .acpi_match_table = ACPI_PTR(lp855x_acpi_match),
}, },
.probe_new = lp855x_probe, .probe = lp855x_probe,
.remove = lp855x_remove, .remove = lp855x_remove,
.id_table = lp855x_ids, .id_table = lp855x_ids,
}; };

View file

@ -141,7 +141,7 @@ static struct i2c_driver lv5207lp_driver = {
.driver = { .driver = {
.name = "lv5207lp", .name = "lv5207lp",
}, },
.probe_new = lv5207lp_probe, .probe = lv5207lp_probe,
.remove = lv5207lp_remove, .remove = lv5207lp_remove,
.id_table = lv5207lp_ids, .id_table = lv5207lp_ids,
}; };