summaryrefslogtreecommitdiff
path: root/drivers/media/i2c/uda1342.c
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-11-19 01:42:01 +0300
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2022-11-21 13:04:39 +0300
commit835fb18984d4dc53f910c0ab6491b1f7a86a55f7 (patch)
tree53d7a25bf6a06a88b5d2b1970927ef557614c7e8 /drivers/media/i2c/uda1342.c
parentdc90c426dd8711a3e0e1eb1fd604c9ea34103c99 (diff)
downloadlinux-835fb18984d4dc53f910c0ab6491b1f7a86a55f7.tar.xz
media: i2c/uda1342: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'drivers/media/i2c/uda1342.c')
-rw-r--r--drivers/media/i2c/uda1342.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/i2c/uda1342.c b/drivers/media/i2c/uda1342.c
index d0659c4392f2..b6873d866272 100644
--- a/drivers/media/i2c/uda1342.c
+++ b/drivers/media/i2c/uda1342.c
@@ -45,8 +45,7 @@ static const struct v4l2_subdev_ops uda1342_ops = {
.audio = &uda1342_audio_ops,
};
-static int uda1342_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
+static int uda1342_probe(struct i2c_client *client)
{
struct i2c_adapter *adapter = client->adapter;
struct v4l2_subdev *sd;
@@ -89,7 +88,7 @@ static struct i2c_driver uda1342_driver = {
.driver = {
.name = "uda1342",
},
- .probe = uda1342_probe,
+ .probe_new = uda1342_probe,
.remove = uda1342_remove,
.id_table = uda1342_id,
};