summaryrefslogtreecommitdiff
path: root/Documentation/media/uapi/dvb/ca-get-msg.rst
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@s-opensource.com>2017-09-01 08:45:28 -0400
committerMauro Carvalho Chehab <mchehab@s-opensource.com>2017-09-05 06:12:54 -0400
commit33047274346a830e9620764f11e37f5f6acc380d (patch)
tree5f7ac6f6fdb69abe32a484e9d1c46806b0d8027a /Documentation/media/uapi/dvb/ca-get-msg.rst
parente0f891d8462d51bf42da16095fc9de57f7648043 (diff)
media: dvb CA docs: place undocumented data together with ioctls
Right now, the same undocumented structs are on two places: at ca_data_types.rst and together with their ioctls. Move them to just one place and use the standard way to represent them. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/media/uapi/dvb/ca-get-msg.rst')
-rw-r--r--Documentation/media/uapi/dvb/ca-get-msg.rst38
1 files changed, 9 insertions, 29 deletions
diff --git a/Documentation/media/uapi/dvb/ca-get-msg.rst b/Documentation/media/uapi/dvb/ca-get-msg.rst
index 121588da3ef1..1ee9d667c901 100644
--- a/Documentation/media/uapi/dvb/ca-get-msg.rst
+++ b/Documentation/media/uapi/dvb/ca-get-msg.rst
@@ -28,37 +28,17 @@ Arguments
``msg``
Pointer to struct :c:type:`ca_msg`.
+.. c:type:: ca_msg
-.. c:type:: struct ca_msg
-
-.. flat-table:: struct ca_msg
- :header-rows: 1
- :stub-columns: 0
-
- -
- - type
- - name
- - description
- -
- - unsigned int
- - index
- -
-
- -
- - unsigned int
- - type
- -
-
- -
- - unsigned int
- - length
- -
-
- -
- - unsigned char
- - msg[256]
- -
+.. code-block:: c
+ /* a message to/from a CI-CAM */
+ struct ca_msg {
+ unsigned int index;
+ unsigned int type;
+ unsigned int length;
+ unsigned char msg[256];
+ };
Description
-----------