diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-01 13:58:44 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-07-01 14:54:22 -0300 |
commit | 7347081e8a52d1aa0c04d2dfd6e1e0b0bd59758e (patch) | |
tree | 0e7de261b9cc77e48fc35c0d3fbee0cbe66b53e6 /Documentation/linux_tv/media/v4l/rw.rst | |
parent | af4a4d0db8ab2c4e2088bc48cfa49511b766dca6 (diff) | |
download | lwn-7347081e8a52d1aa0c04d2dfd6e1e0b0bd59758e.tar.gz lwn-7347081e8a52d1aa0c04d2dfd6e1e0b0bd59758e.zip |
doc-rst: linux_tv: simplify references
There are lots of internal references in the form:
:ref:`foo <foo>`
Simplify them to be just: :ref:`foo`.
Patch generated via this small script:
for j in $(find . -name '*'); do echo $j; perl -ne 'if (m/\`(\S+)\s*\<(\S+)\>\`/) { if (!($1=~'http') && $1 eq $2) { s,\s*\<(\S+)\>,,; } } print $_' <$j >a && mv a $j; done
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'Documentation/linux_tv/media/v4l/rw.rst')
-rw-r--r-- | Documentation/linux_tv/media/v4l/rw.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/linux_tv/media/v4l/rw.rst b/Documentation/linux_tv/media/v4l/rw.rst index ad365a6e435d..c840ee0fd14c 100644 --- a/Documentation/linux_tv/media/v4l/rw.rst +++ b/Documentation/linux_tv/media/v4l/rw.rst @@ -10,7 +10,7 @@ Input and output devices support the :c:func:`read()` and :c:func:`write()` function, respectively, when the ``V4L2_CAP_READWRITE`` flag in the ``capabilities`` field of struct :ref:`v4l2_capability <v4l2-capability>` returned by the -:ref:`VIDIOC_QUERYCAP <VIDIOC_QUERYCAP>` ioctl is set. +:ref:`VIDIOC_QUERYCAP` ioctl is set. Drivers may need the CPU to copy the data, but they may also support DMA to or from user memory, so this I/O method is not necessarily less |