Commit 625ac9af authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mauro Carvalho Chehab
Browse files

media: atomisp: Switch i2c drivers back to use .probe()

After commit b8a1a4cd ("i2c: Provide a temporary .probe_new()
call-back type"), all drivers being converted to .probe_new() and then
commit 03c835f4 ("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.

Link: https://lore.kernel.org/r/20230524151646.486847-3-u.kleine-koenig@pengutronix.de



Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 4d985809
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -705,7 +705,7 @@ static struct i2c_driver gc0310_driver = {
		.pm = pm_sleep_ptr(&gc0310_pm_ops),
		.acpi_match_table = gc0310_acpi_match,
	},
	.probe_new = gc0310_probe,
	.probe = gc0310_probe,
	.remove = gc0310_remove,
};
module_i2c_driver(gc0310_driver);
+1 −1
Original line number Diff line number Diff line
@@ -864,7 +864,7 @@ static struct i2c_driver gc2235_driver = {
		.name = "gc2235",
		.acpi_match_table = gc2235_acpi_match,
	},
	.probe_new = gc2235_probe,
	.probe = gc2235_probe,
	.remove = gc2235_remove,
};
module_i2c_driver(gc2235_driver);
+1 −1
Original line number Diff line number Diff line
@@ -945,7 +945,7 @@ static struct i2c_driver lm3554_driver = {
		.pm   = &lm3554_pm_ops,
		.acpi_match_table = lm3554_acpi_match,
	},
	.probe_new = lm3554_probe,
	.probe = lm3554_probe,
	.remove = lm3554_remove,
};
module_i2c_driver(lm3554_driver);
+1 −1
Original line number Diff line number Diff line
@@ -1600,7 +1600,7 @@ static struct i2c_driver mt9m114_driver = {
		.name = "mt9m114",
		.acpi_match_table = mt9m114_acpi_match,
	},
	.probe_new = mt9m114_probe,
	.probe = mt9m114_probe,
	.remove = mt9m114_remove,
};
module_i2c_driver(mt9m114_driver);
+1 −1
Original line number Diff line number Diff line
@@ -719,7 +719,7 @@ static struct i2c_driver ov2680_driver = {
		.pm = pm_sleep_ptr(&ov2680_pm_ops),
		.acpi_match_table = ov2680_acpi_match,
	},
	.probe_new = ov2680_probe,
	.probe = ov2680_probe,
	.remove = ov2680_remove,
};
module_i2c_driver(ov2680_driver);
Loading