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

media: cx25840: 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 a594a221
...@@ -5825,8 +5825,7 @@ static u32 get_cx2388x_ident(struct i2c_client *client) ...@@ -5825,8 +5825,7 @@ static u32 get_cx2388x_ident(struct i2c_client *client)
return ret; return ret;
} }
static int cx25840_probe(struct i2c_client *client, static int cx25840_probe(struct i2c_client *client)
const struct i2c_device_id *did)
{ {
struct cx25840_state *state; struct cx25840_state *state;
struct v4l2_subdev *sd; struct v4l2_subdev *sd;
...@@ -6046,7 +6045,7 @@ static struct i2c_driver cx25840_driver = { ...@@ -6046,7 +6045,7 @@ static struct i2c_driver cx25840_driver = {
.driver = { .driver = {
.name = "cx25840", .name = "cx25840",
}, },
.probe = cx25840_probe, .probe_new = cx25840_probe,
.remove = cx25840_remove, .remove = cx25840_remove,
.id_table = cx25840_id, .id_table = cx25840_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