diff options
author | Paweł Anikiel <[email protected]> | 2024-04-08 15:10:02 +0000 |
---|---|---|
committer | Hans Verkuil <[email protected]> | 2024-04-09 08:15:04 +0200 |
commit | fa6d5df14ff1b9b026e5e88d95e7fc22347e9b0f (patch) | |
tree | d02bcea03032a6e35f3e76da907b7b4e396e468f | |
parent | 785a04bb3fe64f16ef1e9f2264c36dbe7786974b (diff) |
media: vpif_display: Use pad variant of dv timing subdev calls
Use the pad variant for all (s|g|query)_dv_timings subdev calls, which
includes a pad argument.
Signed-off-by: Paweł Anikiel <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
-rw-r--r-- | drivers/media/platform/ti/davinci/vpif_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/ti/davinci/vpif_display.c b/drivers/media/platform/ti/davinci/vpif_display.c index 02ede1fe12cb..76d8fa8ad088 100644 --- a/drivers/media/platform/ti/davinci/vpif_display.c +++ b/drivers/media/platform/ti/davinci/vpif_display.c @@ -934,7 +934,7 @@ static int vpif_s_dv_timings(struct file *file, void *priv, } /* Configure subdevice timings, if any */ - ret = v4l2_subdev_call(ch->sd, video, s_dv_timings, timings); + ret = v4l2_subdev_call(ch->sd, pad, s_dv_timings, 0, timings); if (ret == -ENOIOCTLCMD || ret == -ENODEV) ret = 0; if (ret < 0) { |