summaryrefslogtreecommitdiffstats
path: root/Documentation/media/kapi/v4l2-fh.rst
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2016-08-19 12:00:43 -0300
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2016-08-22 21:23:00 -0300
commit1b81f010bfd8ce61b79329d7ebb23b62d5d7effb (patch)
tree253f5d219edd021f4f8be04ffabd2688ce7e8edf /Documentation/media/kapi/v4l2-fh.rst
parentb7ff94df5628326d4e204c97e782ecc0f3dfa8e3 (diff)
downloadlinux-stable-1b81f010bfd8ce61b79329d7ebb23b62d5d7effb.tar.gz
linux-stable-1b81f010bfd8ce61b79329d7ebb23b62d5d7effb.tar.bz2
linux-stable-1b81f010bfd8ce61b79329d7ebb23b62d5d7effb.zip
[media] docs-next: stop abusing on the cpp domain
Now that we have an override for the c domain that will do the right thing for the Kernel, stop abusing on the cpp domain. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/media/kapi/v4l2-fh.rst')
-rw-r--r--Documentation/media/kapi/v4l2-fh.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/media/kapi/v4l2-fh.rst b/Documentation/media/kapi/v4l2-fh.rst
index 9e87d5ca3e4a..3ee64adf4635 100644
--- a/Documentation/media/kapi/v4l2-fh.rst
+++ b/Documentation/media/kapi/v4l2-fh.rst
@@ -21,8 +21,8 @@ function by the driver.
In many cases the struct :c:type:`v4l2_fh` will be embedded in a larger
structure. In that case you should call:
-#) :c:func:`v4l2_fh_init` and :cpp:func:`v4l2_fh_add` in ``open()``
-#) :c:func:`v4l2_fh_del` and :cpp:func:`v4l2_fh_exit` in ``release()``
+#) :c:func:`v4l2_fh_init` and :c:func:`v4l2_fh_add` in ``open()``
+#) :c:func:`v4l2_fh_del` and :c:func:`v4l2_fh_exit` in ``release()``
Drivers can extract their own file handle structure by using the container_of
macro.