From: Uwe Kleine-König Date: Fri, 18 Nov 2022 22:40:35 +0000 (+0100) Subject: media: dvb-frontends/au8522_decoder: Convert to i2c's .probe_new() X-Git-Tag: io_uring-6.2-2022-12-19~37^2~158^2~92 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3a29275de5fe05f8bd4ac16c826c884e44197507;p=linux-block.git media: dvb-frontends/au8522_decoder: 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 Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/dvb-frontends/au8522_decoder.c b/drivers/media/dvb-frontends/au8522_decoder.c index e4f99bd468cb..0f748cf46089 100644 --- a/drivers/media/dvb-frontends/au8522_decoder.c +++ b/drivers/media/dvb-frontends/au8522_decoder.c @@ -669,8 +669,7 @@ static const struct v4l2_ctrl_ops au8522_ctrl_ops = { /* ----------------------------------------------------------------------- */ -static int au8522_probe(struct i2c_client *client, - const struct i2c_device_id *did) +static int au8522_probe(struct i2c_client *client) { struct au8522_state *state; struct v4l2_ctrl_handler *hdl; @@ -777,7 +776,7 @@ static struct i2c_driver au8522_driver = { .driver = { .name = "au8522", }, - .probe = au8522_probe, + .probe_new = au8522_probe, .remove = au8522_remove, .id_table = au8522_id, };