powerpc/powernv: Report size of OPAL memcons log
[linux/fpc-iii.git] / Documentation / media / uapi / dvb / ca-fopen.rst
blob3d281975144670a8dac61e7fa7643fee43332c61
1 .. -*- coding: utf-8; mode: rst -*-
3 .. _ca_fopen:
5 =============
6 DVB CA open()
7 =============
9 Name
10 ----
12 DVB CA open()
15 Synopsis
16 --------
18 .. c:function:: int open(const char *name, int flags)
19     :name: dvb-ca-open
22 Arguments
23 ---------
25 ``name``
26   Name of specific DVB CA device.
28 ``flags``
29   A bit-wise OR of the following flags:
31 .. flat-table::
32     :header-rows:  0
33     :stub-columns: 0
35     -
36        - O_RDONLY
37        - read-only access
39     -
40        - O_RDWR
41        - read/write access
43     -
44        - O_NONBLOCK
45        - open in non-blocking mode
46          (blocking mode is the default)
49 Description
50 -----------
52 This system call opens a named ca device (e.g. /dev/ost/ca) for
53 subsequent use.
55 When an open() call has succeeded, the device will be ready for use. The
56 significance of blocking or non-blocking mode is described in the
57 documentation for functions where there is a difference. It does not
58 affect the semantics of the open() call itself. A device opened in
59 blocking mode can later be put into non-blocking mode (and vice versa)
60 using the F_SETFL command of the fcntl system call. This is a standard
61 system call, documented in the Linux manual page for fcntl. Only one
62 user can open the CA Device in O_RDWR mode. All other attempts to open
63 the device in this mode will fail, and an error code will be returned.
66 Return Value
67 ------------
69 .. tabularcolumns:: |p{2.5cm}|p{15.0cm}|
71 .. flat-table::
72     :header-rows:  0
73     :stub-columns: 0
76     -  .. row 1
78        -  ``ENODEV``
80        -  Device driver not loaded/available.
82     -  .. row 2
84        -  ``EINTERNAL``
86        -  Internal error.
88     -  .. row 3
90        -  ``EBUSY``
92        -  Device or resource busy.
94     -  .. row 4
96        -  ``EINVAL``
98        -  Invalid argument.