drm/bridge: sii902x: 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> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Link: https://lore.kernel.org/r/20221118224540.619276-30-uwe@kleine-koenig.org Signed-off-by: Robert Foss <robert.foss@linaro.org>
This commit is contained in:
parent
536a94e8e6
commit
9ba42531c7
@ -1065,8 +1065,7 @@ static int sii902x_init(struct sii902x *sii902x)
|
||||
return i2c_mux_add_adapter(sii902x->i2cmux, 0, 0, 0);
|
||||
}
|
||||
|
||||
static int sii902x_probe(struct i2c_client *client,
|
||||
const struct i2c_device_id *id)
|
||||
static int sii902x_probe(struct i2c_client *client)
|
||||
{
|
||||
struct device *dev = &client->dev;
|
||||
struct device_node *endpoint;
|
||||
@ -1151,7 +1150,7 @@ static const struct i2c_device_id sii902x_i2c_ids[] = {
|
||||
MODULE_DEVICE_TABLE(i2c, sii902x_i2c_ids);
|
||||
|
||||
static struct i2c_driver sii902x_driver = {
|
||||
.probe = sii902x_probe,
|
||||
.probe_new = sii902x_probe,
|
||||
.remove = sii902x_remove,
|
||||
.driver = {
|
||||
.name = "sii902x",
|
||||
|
Loading…
x
Reference in New Issue
Block a user