]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
doc-rst: rw fix a warning
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 3 Jul 2016 19:07:25 +0000 (16:07 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 3 Jul 2016 20:47:39 +0000 (17:47 -0300)
Fix this Sphinx warning:
Documentation/linux_tv/media/v4l/rw:31: WARNING: Literal block ends without a blank line; unexpected unindent.

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Documentation/linux_tv/media/v4l/rw.rst

index c840ee0fd14c42b228c8e2e49d33b007a1be6bfd..beab37eccb1aeb5c7eaec3f0a7411c1e25f638e4 100644 (file)
@@ -23,11 +23,11 @@ setup to exchange data. It permits command line stunts like this (the
 vidctrl tool is fictitious):
 
 
+.. code-block:: none
 
-::
+    $ vidctrl /dev/video --input=0 --format=YUYV --size=352x288
+    $ dd if=/dev/video of=myimage.422 bs=202752 count=1
 
-    > vidctrl /dev/video --input=0 --format=YUYV --size=352x288
-    > dd if=/dev/video of=myimage.422 bs=202752 count=1
 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,