.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0 */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Xilinx Video IP Composite Device |
---|
3 | 4 | * |
---|
.. | .. |
---|
6 | 7 | * |
---|
7 | 8 | * Contacts: Hyun Kwon <hyun.kwon@xilinx.com> |
---|
8 | 9 | * Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
---|
9 | | - * |
---|
10 | | - * This program is free software; you can redistribute it and/or modify |
---|
11 | | - * it under the terms of the GNU General Public License version 2 as |
---|
12 | | - * published by the Free Software Foundation. |
---|
13 | 10 | */ |
---|
14 | 11 | |
---|
15 | 12 | #ifndef __XILINX_VIPP_H__ |
---|
.. | .. |
---|
28 | 25 | * @media_dev: media device |
---|
29 | 26 | * @dev: (OF) device |
---|
30 | 27 | * @notifier: V4L2 asynchronous subdevs notifier |
---|
31 | | - * @entities: entities in the graph as a list of xvip_graph_entity |
---|
32 | | - * @num_subdevs: number of subdevs in the pipeline |
---|
33 | 28 | * @dmas: list of DMA channels at the pipeline output and input |
---|
34 | 29 | * @v4l2_caps: V4L2 capabilities of the whole device (see VIDIOC_QUERYCAP) |
---|
35 | 30 | */ |
---|
.. | .. |
---|
39 | 34 | struct device *dev; |
---|
40 | 35 | |
---|
41 | 36 | struct v4l2_async_notifier notifier; |
---|
42 | | - struct list_head entities; |
---|
43 | | - unsigned int num_subdevs; |
---|
44 | 37 | |
---|
45 | 38 | struct list_head dmas; |
---|
46 | 39 | u32 v4l2_caps; |
---|