aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2016-09-08 08:57:24 -0400
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-09-09 08:59:12 -0400
commit82631b5bb268f670613db110177483ae3e85f913 (patch)
treea9064fce63c0289003da22fb6df3c1d2b23bab78 /include/media
parentc13dce18b8266566e951b1d4b9bbbbbf25a00068 (diff)
[media] mc-core.rst: fix a warning about an internal routine
Fix this warning: Documentation/media/kapi/mc-core.rst:97: WARNING: c:func reference target not found: media_devnode_release The media_device_release() is a function internal to media-devnode.c, and not exported elsewhere. So, we can't cross-reference it here. Make it explicit at the documentation. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/media-devnode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/media/media-devnode.h b/include/media/media-devnode.h
index 972168e90413..cd23e915764c 100644
--- a/include/media/media-devnode.h
+++ b/include/media/media-devnode.h
@@ -76,7 +76,8 @@ struct media_file_operations {
76 * @parent: parent device 76 * @parent: parent device
77 * @minor: device node minor number 77 * @minor: device node minor number
78 * @flags: flags, combination of the ``MEDIA_FLAG_*`` constants 78 * @flags: flags, combination of the ``MEDIA_FLAG_*`` constants
79 * @release: release callback called at the end of media_devnode_release() 79 * @release: release callback called at the end of ``media_devnode_release()``
80 * routine at media-device.c.
80 * 81 *
81 * This structure represents a media-related device node. 82 * This structure represents a media-related device node.
82 * 83 *