Commit 0529bfa0 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mauro Carvalho Chehab

media: i2c/ov7670: Convert to i2c's .probe_new()

.probe_new() doesn't get the i2c_device_id * parameter, so determine
that explicitly in the probe function.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 78c57c16
...@@ -1847,9 +1847,9 @@ static int ov7670_parse_dt(struct device *dev, ...@@ -1847,9 +1847,9 @@ static int ov7670_parse_dt(struct device *dev,
return 0; return 0;
} }
static int ov7670_probe(struct i2c_client *client, static int ov7670_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
struct v4l2_fract tpf; struct v4l2_fract tpf;
struct v4l2_subdev *sd; struct v4l2_subdev *sd;
struct ov7670_info *info; struct ov7670_info *info;
...@@ -2038,7 +2038,7 @@ static struct i2c_driver ov7670_driver = { ...@@ -2038,7 +2038,7 @@ static struct i2c_driver ov7670_driver = {
.name = "ov7670", .name = "ov7670",
.of_match_table = of_match_ptr(ov7670_of_match), .of_match_table = of_match_ptr(ov7670_of_match),
}, },
.probe = ov7670_probe, .probe_new = ov7670_probe,
.remove = ov7670_remove, .remove = ov7670_remove,
.id_table = ov7670_id, .id_table = ov7670_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