Linux 4.11-rc6
[linux/fpc-iii.git] / Documentation / media / uapi / cec / cec-func-open.rst
blob0304388cd15976a7ff00eb46ca9bc9ef5f0a3c94
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _cec-func-open:
5 **********
6 cec open()
7 **********
9 Name
10 ====
12 cec-open - Open a cec device
14 Synopsis
15 ========
17 .. code-block:: c
19     #include <fcntl.h>
22 .. c:function:: int open( const char *device_name, int flags )
23    :name: cec-open
26 Arguments
27 =========
29 ``device_name``
30     Device to be opened.
32 ``flags``
33     Open flags. Access mode must be ``O_RDWR``.
35     When the ``O_NONBLOCK`` flag is given, the
36     :ref:`CEC_RECEIVE <CEC_RECEIVE>` and :c:func:`CEC_DQEVENT` ioctls
37     will return the ``EAGAIN`` error code when no message or event is available, and
38     ioctls :ref:`CEC_TRANSMIT <CEC_TRANSMIT>`,
39     :ref:`CEC_ADAP_S_PHYS_ADDR <CEC_ADAP_S_PHYS_ADDR>` and
40     :ref:`CEC_ADAP_S_LOG_ADDRS <CEC_ADAP_S_LOG_ADDRS>`
41     all return 0.
43     Other flags have no effect.
46 Description
47 ===========
49 To open a cec device applications call :c:func:`open()` with the
50 desired device name. The function has no side effects; the device
51 configuration remain unchanged.
53 When the device is opened in read-only mode, attempts to modify its
54 configuration will result in an error, and ``errno`` will be set to
55 EBADF.
58 Return Value
59 ============
61 :c:func:`open()` returns the new file descriptor on success. On error,
62 -1 is returned, and ``errno`` is set appropriately. Possible error codes
63 include:
65 ``EACCES``
66     The requested access to the file is not allowed.
68 ``EMFILE``
69     The process already has the maximum number of files open.
71 ``ENFILE``
72     The system limit on the total number of open files has been reached.
74 ``ENOMEM``
75     Insufficient kernel memory was available.
77 ``ENXIO``
78     No device corresponding to this device special file exists.