diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-12 20:15:23 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-12 20:15:23 +0200 |
commit | 4855307b81f02af4853e02cba2ce16eb29376548 (patch) | |
tree | 18d04bc585e5c0370a2b5cf5bf628eb220b534b0 /Documentation/media/uapi/v4l/rw.rst | |
parent | [media] vidioc-g-dv-timings.rst: document interlaced defines (diff) | |
download | linux-4855307b81f02af4853e02cba2ce16eb29376548.tar.xz linux-4855307b81f02af4853e02cba2ce16eb29376548.zip |
[media] doc-rst: use the right markup for footnotes
According with ReST spec, footnotes should be like:
[#name], and not [name]. So, change them.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/media/uapi/v4l/rw.rst')
-rw-r--r-- | Documentation/media/uapi/v4l/rw.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/media/uapi/v4l/rw.rst b/Documentation/media/uapi/v4l/rw.rst index 66ba54648c45..dcac379c484f 100644 --- a/Documentation/media/uapi/v4l/rw.rst +++ b/Documentation/media/uapi/v4l/rw.rst @@ -31,17 +31,17 @@ vidctrl tool is fictitious): To read from the device applications use the :ref:`read() <func-read>` function, to write the :ref:`write() <func-write>` function. Drivers must implement one I/O method if they exchange data with applications, -but it need not be this. [1]_ When reading or writing is supported, the +but it need not be this. [#f1]_ When reading or writing is supported, the driver must also support the :ref:`select() <func-select>` and -:ref:`poll() <func-poll>` function. [2]_ +:ref:`poll() <func-poll>` function. [#f2]_ -.. [1] +.. [#f1] It would be desirable if applications could depend on drivers supporting all I/O interfaces, but as much as the complex memory mapping I/O can be inadequate for some devices we have no reason to require this interface, which is most useful for simple applications capturing still images. -.. [2] +.. [#f2] At the driver level :ref:`select() <func-select>` and :ref:`poll() <func-poll>` are the same, and :ref:`select() <func-select>` is too important to be optional. |