diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2006-09-14 05:43:22 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2006-09-14 05:43:22 +0200 |
commit | 0e2b8e3813b0206ac4624d3c6ac4ad8ff05f17b5 (patch) | |
tree | 95df4e43bca96e0164c6330796a0168425fc7520 /linux/drivers/media/dvb/ttpci/av7110_v4l.c | |
parent | 399660410cc2fc9bd935e5da1fec76e0fb95d9a2 (diff) | |
download | mediapointer-dvb-s2-0e2b8e3813b0206ac4624d3c6ac4ad8ff05f17b5.tar.gz mediapointer-dvb-s2-0e2b8e3813b0206ac4624d3c6ac4ad8ff05f17b5.tar.bz2 |
av7110: remove V4L2_CAP_VBI_CAPTURE flag
From: Oliver Endriss <o.endriss@gmx.de>
Implement fix suggested by Michael Hunold for a bug reported
by Philipp Matthias Hahn: Starting "kdetv" on a Siemens DVB-C 1.x
produced an oops because kdetv opened "/dev/vbi0".
Remove the V4L2_CAP_VBI_CAPTURE flag because it does not work with
this type of hardware anyway.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Diffstat (limited to 'linux/drivers/media/dvb/ttpci/av7110_v4l.c')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/av7110_v4l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110_v4l.c b/linux/drivers/media/dvb/ttpci/av7110_v4l.c index 52b500a38..10cfe3131 100644 --- a/linux/drivers/media/dvb/ttpci/av7110_v4l.c +++ b/linux/drivers/media/dvb/ttpci/av7110_v4l.c @@ -921,7 +921,7 @@ static struct saa7146_ext_vv av7110_vv_data_st = { static struct saa7146_ext_vv av7110_vv_data_c = { .inputs = 1, .audios = 1, - .capabilities = V4L2_CAP_TUNER | V4L2_CAP_VBI_CAPTURE | V4L2_CAP_SLICED_VBI_OUTPUT, + .capabilities = V4L2_CAP_TUNER | V4L2_CAP_SLICED_VBI_OUTPUT, .flags = SAA7146_USE_PORT_B_FOR_VBI, .stds = &standard[0], |