diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-09-27 15:54:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-12-18 10:22:40 -0500 |
commit | bd945e47998a60a3d76b6dfc2fb929b3f4f9c90f (patch) | |
tree | 2b4abe58d8148c1e0ffccb084cce21a083e0d07a | |
parent | 60e7926b9376d3140022b8962c15e73e1f1e9ffa (diff) | |
download | linux-bd945e47998a60a3d76b6dfc2fb929b3f4f9c90f.tar.gz linux-bd945e47998a60a3d76b6dfc2fb929b3f4f9c90f.tar.bz2 linux-bd945e47998a60a3d76b6dfc2fb929b3f4f9c90f.zip |
media: media-entity.h: add kernel-doc markups for nested structs
Now that nested structs are parsed by kernel-doc, add markups
to them.
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | include/media/media-entity.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/media/media-entity.h b/include/media/media-entity.h index 222d379960b7..d7a669058b5e 100644 --- a/include/media/media-entity.h +++ b/include/media/media-entity.h @@ -88,6 +88,8 @@ struct media_entity_enum { * @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. + * @stack.entity: pointer to &struct media_entity at the graph. + * @stack.link: pointer to &struct list_head. * @ent_enum: Visited entities * @top: The top of the stack */ @@ -247,6 +249,9 @@ enum media_entity_type { * @pipe: Pipeline this entity belongs to. * @info: Union with devnode information. Kept just for backward * compatibility. + * @info.dev: Contains device major and minor info. + * @info.dev.major: device node major, if the device is a devnode. + * @info.dev.minor: device node minor, if the device is a devnode. * @major: Devnode major number (zero if not applicable). Kept just * for backward compatibility. * @minor: Devnode minor number (zero if not applicable). Kept just |