diff mbox

[37/51] Documentation: rw.rst fix a warning

Message ID 47e7192366dffeeac1522610f29210d1bb51a30f.1467629489.git.mchehab@s-opensource.com (mailing list archive)
State New, archived
Headers show

Commit Message

Mauro Carvalho Chehab July 4, 2016, 11:46 a.m. UTC
Fix this Sphinx warning:
	Documentation/linux_tv/media/v4l/rw.rst: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 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/Documentation/linux_tv/media/v4l/rw.rst b/Documentation/linux_tv/media/v4l/rw.rst
index c840ee0fd14c..beab37eccb1a 100644
--- a/Documentation/linux_tv/media/v4l/rw.rst
+++ b/Documentation/linux_tv/media/v4l/rw.rst
@@ -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,