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

media: i2c/adv7604: 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 f2478d6e
...@@ -3401,9 +3401,9 @@ static void adv76xx_reset(struct adv76xx_state *state) ...@@ -3401,9 +3401,9 @@ static void adv76xx_reset(struct adv76xx_state *state)
} }
} }
static int adv76xx_probe(struct i2c_client *client, static int adv76xx_probe(struct i2c_client *client)
const struct i2c_device_id *id)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
static const struct v4l2_dv_timings cea640x480 = static const struct v4l2_dv_timings cea640x480 =
V4L2_DV_BT_CEA_640X480P59_94; V4L2_DV_BT_CEA_640X480P59_94;
struct adv76xx_state *state; struct adv76xx_state *state;
...@@ -3686,7 +3686,7 @@ static struct i2c_driver adv76xx_driver = { ...@@ -3686,7 +3686,7 @@ static struct i2c_driver adv76xx_driver = {
.name = "adv7604", .name = "adv7604",
.of_match_table = of_match_ptr(adv76xx_of_id), .of_match_table = of_match_ptr(adv76xx_of_id),
}, },
.probe = adv76xx_probe, .probe_new = adv76xx_probe,
.remove = adv76xx_remove, .remove = adv76xx_remove,
.id_table = adv76xx_i2c_id, .id_table = adv76xx_i2c_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