Merge remote-tracking branch 'omap_dss2/for-next'
[deliverable/linux.git] / Documentation / media / uapi / cec / cec-func-open.rst
CommitLineData
e2460b1d
MH
1.. -*- coding: utf-8; mode: rst -*-
2
3.. _cec-func-open:
4
5**********
6cec open()
7**********
8
21c62694
MH
9Name
10====
e2460b1d 11
21c62694 12cec-open - Open a cec device
e2460b1d
MH
13
14Synopsis
15========
16
17.. code-block:: c
18
19 #include <fcntl.h>
20
21
1b81f010 22.. c:function:: int open( const char *device_name, int flags )
99547836 23 :name: cec-open
21c62694 24
e2460b1d
MH
25
26Arguments
27=========
28
29``device_name``
30 Device to be opened.
31
32``flags``
33 Open flags. Access mode must be ``O_RDWR``.
34
35 When the ``O_NONBLOCK`` flag is given, the
9cd3476c 36 :ref:`CEC_RECEIVE <CEC_RECEIVE>` and :c:func:`CEC_DQEVENT` ioctls
e5208ed2
HV
37 will return the ``EAGAIN`` error code when no message or event is available, and
38 ioctls :ref:`CEC_TRANSMIT <CEC_TRANSMIT>`,
1267c60a
HV
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>`
e5208ed2 41 all return 0.
e2460b1d
MH
42
43 Other flags have no effect.
44
45
46Description
47===========
48
b6b6e678
MCC
49.. note::
50
51 This documents the proposed CEC API. This API is not yet finalized
706f8a99 52 and is currently only available as a staging kernel module.
e2460b1d
MH
53
54To open a cec device applications call :c:func:`open()` with the
55desired device name. The function has no side effects; the device
56configuration remain unchanged.
57
58When the device is opened in read-only mode, attempts to modify its
59configuration will result in an error, and ``errno`` will be set to
60EBADF.
61
62
63Return Value
64============
65
66:c:func:`open()` returns the new file descriptor on success. On error,
67-1 is returned, and ``errno`` is set appropriately. Possible error codes
68include:
69
b2a58436 70``EACCES``
e2460b1d
MH
71 The requested access to the file is not allowed.
72
b2a58436 73``EMFILE``
e2460b1d
MH
74 The process already has the maximum number of files open.
75
b2a58436 76``ENFILE``
e2460b1d
MH
77 The system limit on the total number of open files has been reached.
78
b2a58436 79``ENOMEM``
e2460b1d
MH
80 Insufficient kernel memory was available.
81
b2a58436 82``ENXIO``
e2460b1d 83 No device corresponding to this device special file exists.
This page took 0.042655 seconds and 5 git commands to generate.