Commit 9b3c009e authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Hans Verkuil

media: i2c/saa717x: 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 3f92c3e9
...@@ -1228,8 +1228,7 @@ static const struct v4l2_subdev_ops saa717x_ops = { ...@@ -1228,8 +1228,7 @@ static const struct v4l2_subdev_ops saa717x_ops = {
/* i2c implementation */ /* i2c implementation */
/* ----------------------------------------------------------------------- */ /* ----------------------------------------------------------------------- */
static int saa717x_probe(struct i2c_client *client, static int saa717x_probe(struct i2c_client *client)
const struct i2c_device_id *did)
{ {
struct saa717x_state *decoder; struct saa717x_state *decoder;
struct v4l2_ctrl_handler *hdl; struct v4l2_ctrl_handler *hdl;
...@@ -1344,7 +1343,7 @@ static struct i2c_driver saa717x_driver = { ...@@ -1344,7 +1343,7 @@ static struct i2c_driver saa717x_driver = {
.driver = { .driver = {
.name = "saa717x", .name = "saa717x",
}, },
.probe = saa717x_probe, .probe_new = saa717x_probe,
.remove = saa717x_remove, .remove = saa717x_remove,
.id_table = saa717x_id, .id_table = saa717x_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