提交 783001ad 编写于 作者: M Mauro Carvalho Chehab

[media] v4l2-subdev: Add description for core ioctl handlers

Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'queryctrl'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'g_ctrl'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 's_ctrl'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'g_ext_ctrls'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 's_ext_ctrls'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'try_ext_ctrls'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'querymenu'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 'g_register'
Warning(.//include/media/v4l2-subdev.h:183): No description found for parameter 's_register'
Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
Acked-by: NJonathan Corbet <corbet@lwn.net>
上级 5c662984
...@@ -119,7 +119,9 @@ struct v4l2_subdev_io_pin_config { ...@@ -119,7 +119,9 @@ struct v4l2_subdev_io_pin_config {
}; };
/** /**
* struct v4l2_subdev_core_ops - Define ops callbacks for subdevs * struct v4l2_subdev_core_ops - Define core ops callbacks for subdevs
*
* @log_status: callback for VIDIOC_LOG_STATUS ioctl handler code.
* *
* @s_io_pin_config: configure one or more chip I/O pins for chips that * @s_io_pin_config: configure one or more chip I/O pins for chips that
* multiplex different internal signal pads out to IO pins. This function * multiplex different internal signal pads out to IO pins. This function
...@@ -141,6 +143,24 @@ struct v4l2_subdev_io_pin_config { ...@@ -141,6 +143,24 @@ struct v4l2_subdev_io_pin_config {
* @s_gpio: set GPIO pins. Very simple right now, might need to be extended with * @s_gpio: set GPIO pins. Very simple right now, might need to be extended with
* a direction argument if needed. * a direction argument if needed.
* *
* @queryctrl: callback for VIDIOC_QUERYCTL ioctl handler code.
*
* @g_ctrl: callback for VIDIOC_G_CTRL ioctl handler code.
*
* @s_ctrl: callback for VIDIOC_S_CTRL ioctl handler code.
*
* @g_ext_ctrls: callback for VIDIOC_G_EXT_CTRLS ioctl handler code.
*
* @s_ext_ctrls: callback for VIDIOC_S_EXT_CTRLS ioctl handler code.
*
* @try_ext_ctrls: callback for VIDIOC_TRY_EXT_CTRLS ioctl handler code.
*
* @querymenu: callback for VIDIOC_QUERYMENU ioctl handler code.
*
* @g_register: callback for VIDIOC_G_REGISTER ioctl handler code.
*
* @s_register: callback for VIDIOC_G_REGISTER ioctl handler code.
*
* @s_power: puts subdevice in power saving mode (on == 0) or normal operation * @s_power: puts subdevice in power saving mode (on == 0) or normal operation
* mode (on == 1). * mode (on == 1).
* *
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册