Merge tag 'staging-5.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux/fpc-iii.git] / Documentation / userspace-api / media / dvb / dmx-munmap.rst
blob905fdd585a860ed74559b2be0a83330afa52f81e
1 .. Permission is granted to copy, distribute and/or modify this
2 .. document under the terms of the GNU Free Documentation License,
3 .. Version 1.1 or any later version published by the Free Software
4 .. Foundation, with no Invariant Sections, no Front-Cover Texts
5 .. and no Back-Cover Texts. A copy of the license is included at
6 .. Documentation/userspace-api/media/fdl-appendix.rst.
7 ..
8 .. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
10 .. _dmx-munmap:
12 ************
13 DVB munmap()
14 ************
16 Name
17 ====
19 dmx-munmap - Unmap device memory
21 .. warning:: This API is still experimental.
24 Synopsis
25 ========
27 .. code-block:: c
29     #include <unistd.h>
30     #include <sys/mman.h>
33 .. c:function:: int munmap( void *start, size_t length )
34     :name: dmx-munmap
36 Arguments
37 =========
39 ``start``
40     Address of the mapped buffer as returned by the
41     :ref:`mmap() <dmx-mmap>` function.
43 ``length``
44     Length of the mapped buffer. This must be the same value as given to
45     :ref:`mmap() <dmx-mmap>`.
48 Description
49 ===========
51 Unmaps a previously with the :ref:`mmap() <dmx-mmap>` function mapped
52 buffer and frees it, if possible.
55 Return Value
56 ============
58 On success :ref:`munmap() <dmx-munmap>` returns 0, on failure -1 and the
59 ``errno`` variable is set appropriately:
61 EINVAL
62     The ``start`` or ``length`` is incorrect, or no buffers have been
63     mapped yet.