mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 03:04:01 +08:00
V4L/DVB (10240): Fix obvious swapped names in v4l2_subdev logic
The VIDIOC_QUERYCTRL command needs to actually do a queryctrl, not a querymenu. Similarly, the VIDIOC_QUERYMENU command needs to actually do a querymenu not a queryctrl. Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
db4b2d193c
commit
aeaecaf8eb
@ -28,13 +28,13 @@ int v4l2_subdev_command(struct v4l2_subdev *sd, unsigned cmd, void *arg)
|
||||
{
|
||||
switch (cmd) {
|
||||
case VIDIOC_QUERYCTRL:
|
||||
return v4l2_subdev_call(sd, core, querymenu, arg);
|
||||
return v4l2_subdev_call(sd, core, queryctrl, arg);
|
||||
case VIDIOC_G_CTRL:
|
||||
return v4l2_subdev_call(sd, core, g_ctrl, arg);
|
||||
case VIDIOC_S_CTRL:
|
||||
return v4l2_subdev_call(sd, core, s_ctrl, arg);
|
||||
case VIDIOC_QUERYMENU:
|
||||
return v4l2_subdev_call(sd, core, queryctrl, arg);
|
||||
return v4l2_subdev_call(sd, core, querymenu, arg);
|
||||
case VIDIOC_LOG_STATUS:
|
||||
return v4l2_subdev_call(sd, core, log_status);
|
||||
case VIDIOC_DBG_G_CHIP_IDENT:
|
||||
|
Loading…
Reference in New Issue
Block a user