Commit 3a29275d authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Hans Verkuil

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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 479ac4dd
...@@ -669,8 +669,7 @@ static const struct v4l2_ctrl_ops au8522_ctrl_ops = { ...@@ -669,8 +669,7 @@ static const struct v4l2_ctrl_ops au8522_ctrl_ops = {
/* ----------------------------------------------------------------------- */ /* ----------------------------------------------------------------------- */
static int au8522_probe(struct i2c_client *client, static int au8522_probe(struct i2c_client *client)
const struct i2c_device_id *did)
{ {
struct au8522_state *state; struct au8522_state *state;
struct v4l2_ctrl_handler *hdl; struct v4l2_ctrl_handler *hdl;
...@@ -777,7 +776,7 @@ static struct i2c_driver au8522_driver = { ...@@ -777,7 +776,7 @@ static struct i2c_driver au8522_driver = {
.driver = { .driver = {
.name = "au8522", .name = "au8522",
}, },
.probe = au8522_probe, .probe_new = au8522_probe,
.remove = au8522_remove, .remove = au8522_remove,
.id_table = au8522_id, .id_table = au8522_id,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment