Commit 434257f1 authored by Sakari Ailus's avatar Sakari Ailus Committed by Mauro Carvalho Chehab

[media] media: Add KernelDoc documentation for struct media_entity_graph

KernelDoc doesn't appear to handle anonymous structs defined inside
another gracefully. As the struct is internal to the framework graph walk
algorithm, detailed documentation isn't seen very important.
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent 82c68290
...@@ -97,6 +97,15 @@ struct media_entity_enum { ...@@ -97,6 +97,15 @@ struct media_entity_enum {
int idx_max; int idx_max;
}; };
/**
* struct media_entity_graph - Media graph traversal state
*
* @stack: Graph traversal stack; the stack contains information
* on the path the media entities to be walked and the
* links through which they were reached.
* @entities: Visited entities
* @top: The top of the stack
*/
struct media_entity_graph { struct media_entity_graph {
struct { struct {
struct media_entity *entity; struct media_entity *entity;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment