All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] v4l2-pci-skeleton.c: forgot to update v4l2_match_dv_timings call
@ 2015-11-13 14:01 Hans Verkuil
  2015-11-13 14:52 ` kbuild test robot
  0 siblings, 1 reply; 2+ messages in thread
From: Hans Verkuil @ 2015-11-13 14:01 UTC (permalink / raw)
  To: Linux Media Mailing List

Add missing new argument to v4l2_match_dv_timings() in this skeleton driver.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>

diff --git a/Documentation/video4linux/v4l2-pci-skeleton.c b/Documentation/video4linux/v4l2-pci-skeleton.c
index 95ae828..1c8b102 100644
--- a/Documentation/video4linux/v4l2-pci-skeleton.c
+++ b/Documentation/video4linux/v4l2-pci-skeleton.c
@@ -509,7 +509,7 @@ static int skeleton_s_dv_timings(struct file *file, void *_fh,
 		return -EINVAL;
 
 	/* Return 0 if the new timings are the same as the current timings. */
-	if (v4l2_match_dv_timings(timings, &skel->timings, 0))
+	if (v4l2_match_dv_timings(timings, &skel->timings, 0, false))
 		return 0;
 
 	/*

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-11-13 14:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-13 14:01 [PATCH] v4l2-pci-skeleton.c: forgot to update v4l2_match_dv_timings call Hans Verkuil
2015-11-13 14:52 ` kbuild test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.