mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 22:08:33 -04:00
staging: media: tegra-video: move private struct declaration to C file
struct tegra_vi_graph_entity is an internal implementation detail of the VI module. Move its declaration from vi.h to vi.c. Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Reviewed-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
committed by
Hans Verkuil
parent
26b44232f5
commit
983d22f6de
@@ -32,6 +32,19 @@
|
||||
|
||||
#define MAX_CID_CONTROLS 1
|
||||
|
||||
/**
|
||||
* struct tegra_vi_graph_entity - Entity in the video graph
|
||||
*
|
||||
* @asd: subdev asynchronous registration information
|
||||
* @entity: media entity from the corresponding V4L2 subdev
|
||||
* @subdev: V4L2 subdev
|
||||
*/
|
||||
struct tegra_vi_graph_entity {
|
||||
struct v4l2_async_subdev asd;
|
||||
struct media_entity *entity;
|
||||
struct v4l2_subdev *subdev;
|
||||
};
|
||||
|
||||
static const struct tegra_video_format tegra_default_format = {
|
||||
.img_dt = TEGRA_IMAGE_DT_RAW10,
|
||||
.bit_width = 10,
|
||||
|
||||
@@ -98,19 +98,6 @@ struct tegra_vi {
|
||||
struct list_head vi_chans;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct tegra_vi_graph_entity - Entity in the video graph
|
||||
*
|
||||
* @asd: subdev asynchronous registration information
|
||||
* @entity: media entity from the corresponding V4L2 subdev
|
||||
* @subdev: V4L2 subdev
|
||||
*/
|
||||
struct tegra_vi_graph_entity {
|
||||
struct v4l2_async_subdev asd;
|
||||
struct media_entity *entity;
|
||||
struct v4l2_subdev *subdev;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct tegra_vi_channel - Tegra video channel
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user