projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac9575f
)
V4L/DVB (10626): ivtv: fix regression in get sliced vbi format
author
Hans Verkuil
<hverkuil@xs4all.nl>
Mon, 16 Feb 2009 07:25:32 +0000
(
04:25
-0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Tue, 17 Feb 2009 12:43:09 +0000
(09:43 -0300)
The new v4l2_subdev_call used s_fmt instead of g_fmt.
Thanks-to: Andy Walls <awalls@radix.net>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/ivtv/ivtv-ioctl.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/ivtv/ivtv-ioctl.c
b/drivers/media/video/ivtv/ivtv-ioctl.c
index
9be6244
..
c13bd2a
100644
(file)
--- a/
drivers/media/video/ivtv/ivtv-ioctl.c
+++ b/
drivers/media/video/ivtv/ivtv-ioctl.c
@@
-393,7
+393,7
@@
static int ivtv_g_fmt_sliced_vbi_cap(struct file *file, void *fh, struct v4l2_fo
return 0;
}
- v4l2_subdev_call(itv->sd_video, video,
s
_fmt, fmt);
+ v4l2_subdev_call(itv->sd_video, video,
g
_fmt, fmt);
vbifmt->service_set = ivtv_get_service_set(vbifmt);
return 0;
}