Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux/fpc-iii.git] / Documentation / media / uapi / v4l / func-munmap.rst
blobc2f4043d7d2b7612114f2b6989be946fa4baef91
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _func-munmap:
5 *************
6 V4L2 munmap()
7 *************
9 Name
10 ====
12 v4l2-munmap - Unmap device memory
15 Synopsis
16 ========
18 .. code-block:: c
20     #include <unistd.h>
21     #include <sys/mman.h>
24 .. c:function:: int munmap( void *start, size_t length )
25     :name: v4l2-munmap
27 Arguments
28 =========
30 ``start``
31     Address of the mapped buffer as returned by the
32     :ref:`mmap() <func-mmap>` function.
34 ``length``
35     Length of the mapped buffer. This must be the same value as given to
36     :ref:`mmap() <func-mmap>` and returned by the driver in the struct
37     :c:type:`v4l2_buffer` ``length`` field for the
38     single-planar API and in the struct
39     :c:type:`v4l2_plane` ``length`` field for the
40     multi-planar API.
43 Description
44 ===========
46 Unmaps a previously with the :ref:`mmap() <func-mmap>` function mapped
47 buffer and frees it, if possible.
50 Return Value
51 ============
53 On success :ref:`munmap() <func-munmap>` returns 0, on failure -1 and the
54 ``errno`` variable is set appropriately:
56 EINVAL
57     The ``start`` or ``length`` is incorrect, or no buffers have been
58     mapped yet.