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

V4L/DVB: video_ioctl2: don't return, use break

You want to be able to reach the debug code at the end of this function,
so don't use return, use break.
Signed-off-by: NHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 1d94aa36
......@@ -1072,7 +1072,7 @@ static long __video_do_ioctl(struct file *file,
id &= ~curr_id;
}
if (i <= index)
return -EINVAL;
break;
v4l2_video_std_construct(p, curr_id, descr);
......@@ -1597,7 +1597,7 @@ static long __video_do_ioctl(struct file *file,
v4l2_std_id std = vfd->current_norm;
if (p->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
return -EINVAL;
break;
ret = 0;
if (ops->vidioc_g_std)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册