*参照元 [#le80e2ec] #backlinks *説明 [#qcae8745] -パス: [[linux-4.4.1/Documentation/video4linux/v4l2-pci-skeleton.c]] -FIXME: これは何? --説明 **参考 [#v003acfa] *実装 [#j48beaee] /* * The vb2 queue ops. Note that since q->lock is set we can use the standard * vb2_ops_wait_prepare/finish helper functions. If q->lock would be NULL, * then this driver would have to provide these ops. */ static struct vb2_ops skel_qops = { - --[[linux-4.4.1/vb2_ops]] .queue_setup = queue_setup, - --[[linux-4.4.1/queue_setup()]] .buf_prepare = buffer_prepare, - --[[linux-4.4.1/buffer_prepare()]] .buf_queue = buffer_queue, - --[[linux-4.4.1/buffer_queue()]] .start_streaming = start_streaming, - --[[linux-4.4.1/start_streaming()]] .stop_streaming = stop_streaming, - --[[linux-4.4.1/stop_streaming()]] .wait_prepare = vb2_ops_wait_prepare, - --[[linux-4.4.1/vb2_ops_wait_prepare()]] .wait_finish = vb2_ops_wait_finish, - --[[linux-4.4.1/vb2_ops_wait_finish()]] }; *コメント [#c75df21a]