From: Mauro Carvalho Chehab Date: Thu, 8 Sep 2016 12:57:24 +0000 (-0300) Subject: [media] mc-core.rst: fix a warning about an internal routine X-Git-Tag: v4.9-rc1~43^2~185 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=82631b5bb268f670613db110177483ae3e85f913;p=uclinux-h8%2Flinux.git [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 --- 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 { * @parent: parent device * @minor: device node minor number * @flags: flags, combination of the ``MEDIA_FLAG_*`` constants - * @release: release callback called at the end of media_devnode_release() + * @release: release callback called at the end of ``media_devnode_release()`` + * routine at media-device.c. * * This structure represents a media-related device node. *