提交 dff274fd 编写于 作者: H Hans Verkuil 提交者: Mauro Carvalho Chehab

[media] ivtv: don't allow g/s_frequency for output device nodes

Signed-off-by: NHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 7eaf4966
...@@ -1325,6 +1325,7 @@ int ivtv_init_on_first_open(struct ivtv *itv) ...@@ -1325,6 +1325,7 @@ int ivtv_init_on_first_open(struct ivtv *itv)
int video_input; int video_input;
fh.itv = itv; fh.itv = itv;
fh.type = IVTV_ENC_STREAM_TYPE_MPG;
if (test_bit(IVTV_F_I_FAILED, &itv->i_flags)) if (test_bit(IVTV_F_I_FAILED, &itv->i_flags))
return -ENXIO; return -ENXIO;
......
...@@ -1064,7 +1064,10 @@ static int ivtv_s_output(struct file *file, void *fh, unsigned int outp) ...@@ -1064,7 +1064,10 @@ static int ivtv_s_output(struct file *file, void *fh, unsigned int outp)
static int ivtv_g_frequency(struct file *file, void *fh, struct v4l2_frequency *vf) static int ivtv_g_frequency(struct file *file, void *fh, struct v4l2_frequency *vf)
{ {
struct ivtv *itv = fh2id(fh)->itv; struct ivtv *itv = fh2id(fh)->itv;
struct ivtv_stream *s = &itv->streams[fh2id(fh)->type];
if (s->vdev->vfl_dir)
return -ENOTTY;
if (vf->tuner != 0) if (vf->tuner != 0)
return -EINVAL; return -EINVAL;
...@@ -1075,7 +1078,10 @@ static int ivtv_g_frequency(struct file *file, void *fh, struct v4l2_frequency * ...@@ -1075,7 +1078,10 @@ static int ivtv_g_frequency(struct file *file, void *fh, struct v4l2_frequency *
int ivtv_s_frequency(struct file *file, void *fh, struct v4l2_frequency *vf) int ivtv_s_frequency(struct file *file, void *fh, struct v4l2_frequency *vf)
{ {
struct ivtv *itv = fh2id(fh)->itv; struct ivtv *itv = fh2id(fh)->itv;
struct ivtv_stream *s = &itv->streams[fh2id(fh)->type];
if (s->vdev->vfl_dir)
return -ENOTTY;
if (vf->tuner != 0) if (vf->tuner != 0)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册