]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: Documentation: fix several typos
authorMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 18 Feb 2019 19:29:07 +0000 (14:29 -0500)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Fri, 1 Mar 2019 14:54:06 +0000 (09:54 -0500)
Use codespell to fix lots of typos over frontends.

Manually verified to avoid false-positives.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
23 files changed:
Documentation/media/dvb-drivers/dvb-usb.rst
Documentation/media/kapi/dtv-core.rst
Documentation/media/kapi/dtv-frontend.rst
Documentation/media/kapi/mc-core.rst
Documentation/media/kapi/v4l2-device.rst
Documentation/media/kapi/v4l2-intro.rst
Documentation/media/kapi/v4l2-subdev.rst
Documentation/media/uapi/dvb/audio-set-bypass-mode.rst
Documentation/media/uapi/dvb/ca-set-descr.rst
Documentation/media/uapi/dvb/dmx-qbuf.rst
Documentation/media/uapi/dvb/dvbproperty.rst
Documentation/media/uapi/dvb/video_types.rst
Documentation/media/uapi/fdl-appendix.rst
Documentation/media/uapi/mediactl/media-types.rst
Documentation/media/uapi/rc/rc-tables.rst
Documentation/media/uapi/v4l/control.rst
Documentation/media/uapi/v4l/ext-ctrls-codec.rst
Documentation/media/uapi/v4l/subdev-formats.rst
Documentation/media/uapi/v4l/vidioc-g-parm.rst
Documentation/media/v4l-drivers/bttv.rst
Documentation/media/v4l-drivers/imx.rst
Documentation/media/v4l-drivers/pxa_camera.rst
Documentation/media/v4l-drivers/qcom_camss.rst

index 6679191819aa79f9c4ddbaed5fca667228a534d6..b2d5d9e62b308a54c54bfc009e86058c5c176d8e 100644 (file)
@@ -125,7 +125,7 @@ https://linuxtv.org/wiki/index.php/DVB_USB
 
   2004-12-26
 
-  - refactored the dibusb-driver, splitted into separate files
+  - refactored the dibusb-driver, split into separate files
   - i2c-probing enabled
 
   2004-12-06
index 17454a2cf6b04e361ba0a9a22d88a84166c92027..ac005b46f23e5a9baa0e61ba78c31eb5655e6329 100644 (file)
@@ -12,7 +12,7 @@ Digital TV devices are implemented by several different drivers:
 - Frontend drivers that are usually implemented as two separate drivers:
 
   - A tuner driver that implements the logic with commands the part of the
-    hardware with is reponsible to tune into a digital TV transponder or
+    hardware with is responsible to tune into a digital TV transponder or
     physical channel. The output of a tuner is usually a baseband or
     Intermediate Frequency (IF) signal;
 
index 8ea64742c7ba9468f8cdb74e23e47a4cd465e6cb..fbc5517c8d5a85327800b75615e2a6a7c8e39400 100644 (file)
@@ -328,7 +328,7 @@ Statistics collect
 
 On almost all frontend hardware, the bit and byte counts are stored by
 the hardware after a certain amount of time or after the total bit/block
-counter reaches a certain value (usually programable), for example, on
+counter reaches a certain value (usually programmable), for example, on
 every 1000 ms or after receiving 1,000,000 bits.
 
 So, if you read the registers too soon, you'll end by reading the same
index 0bcfeadbc52d8948b831a770c343199bb50df8cf..f930725e0d6b898ef270594f00416b9494708cab 100644 (file)
@@ -60,7 +60,7 @@ Drivers initialize entity pads by calling
 
 Drivers register entities with a media device by calling
 :c:func:`media_device_register_entity()`
-and unregistred by calling
+and unregistered by calling
 :c:func:`media_device_unregister_entity()`.
 
 Interfaces
index c4311f0421befb3284ff38cd6b515ffe92566c66..5e25bf182c18c88540113c98742f1f3ae18e33a0 100644 (file)
@@ -93,7 +93,7 @@ You can iterate over all registered devices as follows:
                int err;
 
                /* Find driver 'ivtv' on the PCI bus.
-               pci_bus_type is a global. For USB busses use usb_bus_type. */
+               pci_bus_type is a global. For USB buses use usb_bus_type. */
                drv = driver_find("ivtv", &pci_bus_type);
                /* iterate over all ivtv device instances */
                err = driver_for_each_device(drv, NULL, p, callback);
index cea3e263e48bae2f9737cbbcb0c5bbf6f8a4faf3..4d54fa9d7a1292412db2d4b7bf407e30e16427cc 100644 (file)
@@ -11,7 +11,7 @@ hardware: most devices have multiple ICs, export multiple device nodes in
 Especially the fact that V4L2 drivers have to setup supporting ICs to
 do audio/video muxing/encoding/decoding makes it more complex than most.
 Usually these ICs are connected to the main bridge driver through one or
-more I2C busses, but other busses can also be used. Such devices are
+more I2C buses, but other buses can also be used. Such devices are
 called 'sub-devices'.
 
 For a long time the framework was limited to the video_device struct for
index be4970909f408719a9b8714ee71c79b8fbc56a8c..29e07e23f8885e01de39c58be3ca09434f216ed1 100644 (file)
@@ -23,7 +23,7 @@ device data.
 
 You also need a way to go from the low-level struct to :c:type:`v4l2_subdev`.
 For the common i2c_client struct the i2c_set_clientdata() call is used to store
-a :c:type:`v4l2_subdev` pointer, for other busses you may have to use other
+a :c:type:`v4l2_subdev` pointer, for other buses you may have to use other
 methods.
 
 Bridges might also need to store per-subdev private data, such as a pointer to
@@ -33,7 +33,7 @@ provides host private data for that purpose that can be accessed with
 
 From the bridge driver perspective, you load the sub-device module and somehow
 obtain the :c:type:`v4l2_subdev` pointer. For i2c devices this is easy: you call
-``i2c_get_clientdata()``. For other busses something similar needs to be done.
+``i2c_get_clientdata()``. For other buses something similar needs to be done.
 Helper functions exists for sub-devices on an I2C bus that do most of this
 tricky work for you.
 
index d537da90acf50aafc1e14ff8eb7f4c5af34dbd7d..d68f05d48d12fe036cf2f699b0db0b3c1aa73563 100644 (file)
@@ -57,7 +57,7 @@ Description
 
 This ioctl call asks the Audio Device to bypass the Audio decoder and
 forward the stream without decoding. This mode shall be used if streams
-that can’t be handled by the Digial TV system shall be decoded. Dolby
+that can’t be handled by the Digital TV system shall be decoded. Dolby
 DigitalTM streams are automatically forwarded by the Digital TV subsystem if
 the hardware can handle it.
 
index 22c8b8f94c7e93377942d13523f10c85596efffa..d36464ba2317d535987e662e133bc30b95f84e4d 100644 (file)
@@ -39,7 +39,7 @@ Description
 -----------
 
 CA_SET_DESCR is used for feeding descrambler CA slots with descrambling
-keys (refered as control words).
+keys (referred as control words).
 
 Return Value
 ------------
index 9a1d85147c2546b8ac0a56d1a6f7ee4368b90766..9dc845daa59de7b243cced7d797742d47de635f8 100644 (file)
@@ -61,7 +61,7 @@ the device is closed.
 
 Applications call the ``DMX_DQBUF`` ioctl to dequeue a filled
 (capturing) buffer from the driver's outgoing queue.
-They just set the ``index`` field withe the buffer ID to be queued.
+They just set the ``index`` field with the buffer ID to be queued.
 When ``DMX_DQBUF`` is called with a pointer to struct :c:type:`dmx_buffer`,
 the driver fills the remaining fields or returns an error code.
 
index 371c72bb94196fa6c752c6b20b7cbb0737dd579b..0c4f5598f2be78e1c22d86a44f1c64e1f9aa93a5 100644 (file)
@@ -44,7 +44,7 @@ with supports all digital TV delivery systems.
       struct :c:type:`dvb_frontend_parameters`.
 
    2. Don't use DVB API version 3 calls on hardware with supports
-      newer standards. Such API provides no suport or a very limited
+      newer standards. Such API provides no support or a very limited
       support to new standards and/or new hardware.
 
    3. Nowadays, most frontends support multiple delivery systems.
index 2ed8aad84003e058bd803c330f5e67e81343ca5b..479942ce6fb8dedf15310620daec11312d3f229c 100644 (file)
@@ -202,7 +202,7 @@ If video_blank is set video will be blanked out if the channel is
 changed or if playback is stopped. Otherwise, the last picture will be
 displayed. play_state indicates if the video is currently frozen,
 stopped, or being played back. The stream_source corresponds to the
-seleted source for the video stream. It can come either from the
+selected source for the video stream. It can come either from the
 demultiplexer or from memory. The video_format indicates the aspect
 ratio (one of 4:3 or 16:9) of the currently played video stream.
 Finally, display_format corresponds to the selected cropping mode in
index f8dc85d3939c5fbf9cf833c0d18fc88b503e68af..9316b8617502be6326e115beaa1ef93ffe9f4d0c 100644 (file)
@@ -363,7 +363,7 @@ various documents with a single copy that is included in the collection,
 provided that you follow the rules of this License for verbatim copying
 of each of the documents in all other respects.
 
-You may extract a single document from such a collection, and dispbibute
+You may extract a single document from such a collection, and distribute
 it individually under this License, provided you insert a copy of this
 License into the extracted document, and follow this License in all
 other respects regarding verbatim copying of that document.
index 8627587b7075a5564c717a2153728bac9cb92dcd..3af6a414b50145f8b970ed3de97233a685164250 100644 (file)
@@ -164,7 +164,7 @@ Types and flags used to represent the media graph elements
 
     *  -  ``MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV``
        -  Video pixel encoding converter. An entity capable of pixel
-         enconding conversion must have at least one sink pad and one
+         encoding conversion must have at least one sink pad and one
          source pad, and convert the encoding of pixels received on
          its sink pad(s) to a different encoding output on its source
          pad(s). Pixel encoding conversion includes but isn't limited
index cb670d10998b9d52d40616c76388734ee63c2c9b..f460031d85313821ac91d940b915d26994d1ed00 100644 (file)
@@ -385,7 +385,7 @@ the remote via /dev/input/event devices.
 
        -  ``KEY_CHANNELDOWN``
 
-       -  Decrease channel sequencially
+       -  Decrease channel sequentially
 
        -  CHANNEL - / CHANNEL DOWN / DOWN
 
@@ -393,7 +393,7 @@ the remote via /dev/input/event devices.
 
        -  ``KEY_CHANNELUP``
 
-       -  Increase channel sequencially
+       -  Increase channel sequentially
 
        -  CHANNEL + / CHANNEL UP / UP
 
index 0d46526b5935e2747337d6606474b71c6d242a0d..71417bba028c658a4c01bdb7105cdc6005a73ee3 100644 (file)
@@ -499,7 +499,7 @@ Example: Changing controls
 .. [#f1]
    The use of ``V4L2_CID_PRIVATE_BASE`` is problematic because different
    drivers may use the same ``V4L2_CID_PRIVATE_BASE`` ID for different
-   controls. This makes it hard to programatically set such controls
+   controls. This makes it hard to programmatically set such controls
    since the meaning of the control with that ID is driver dependent. In
    order to resolve this drivers use unique IDs and the
    ``V4L2_CID_PRIVATE_BASE`` IDs are mapped to those unique IDs by the
index 54b3797b67dd11cc0e7520f2fe8c16929dba9b9f..c97fb7923be5deb220359d30cedb61fc4e7725bc 100644 (file)
@@ -1562,7 +1562,7 @@ MFC 5.1 Control IDs
     Display delay value for H264 decoder. The decoder is forced to
     return a decoded frame after the set 'display delay' number of
     frames. If this number is low it may result in frames returned out
-    of dispaly order, in addition the hardware may still be using the
+    of display order, in addition the hardware may still be using the
     returned buffer as a reference picture for subsequent frames.
 
 ``V4L2_CID_MPEG_MFC51_VIDEO_H264_NUM_REF_PIC_FOR_P (integer)``
index ff4b2a972fd2ea6c1b5fca88c6ec6e72fe298b6d..f5440d55d510a84517fcc84eae3d7110546b912a 100644 (file)
@@ -75,15 +75,15 @@ Media Bus Pixel Codes
 ---------------------
 
 The media bus pixel codes describe image formats as flowing over
-physical busses (both between separate physical components and inside
+physical buses (both between separate physical components and inside
 SoC devices). This should not be confused with the V4L2 pixel formats
 that describe, using four character codes, image formats as stored in
 memory.
 
-While there is a relationship between image formats on busses and image
+While there is a relationship between image formats on buses and image
 formats in memory (a raw Bayer image won't be magically converted to
 JPEG just by storing it to memory), there is no one-to-one
-correspondance between them.
+correspondence between them.
 
 
 Packed RGB Formats
index 0d2593176c90ec4b6e65199a3a8f662c03ac5bfd..d9d5d97848d373edba761ed32299d0723e22965d 100644 (file)
@@ -213,7 +213,7 @@ union holding separate parameters for input and output devices.
 
 .. _parm-caps:
 
-.. flat-table:: Streaming Parameters Capabilites
+.. flat-table:: Streaming Parameters Capabilities
     :header-rows:  0
     :stub-columns: 0
     :widths:       3 1 4
index d72a0f8fd267efd427f71cab0634dceec4aa8965..f956ee2640992c3aa27e4b81668f1409e4aa384b 100644 (file)
@@ -85,7 +85,7 @@ same card listens there is much higher...
 For problems with sound:  There are a lot of different systems used
 for TV sound all over the world.  And there are also different chips
 which decode the audio signal.  Reports about sound problems ("stereo
-does'nt work") are pretty useless unless you include some details
+doesn't work") are pretty useless unless you include some details
 about your hardware and the TV sound scheme used in your country (or
 at least the country you are living in).
 
@@ -771,7 +771,7 @@ Identifying:
       - Lifeview.com.tw states (Feb. 2002):
         "The FlyVideo2000 and FlyVideo2000s product name have renamed to FlyVideo98."
         Their Bt8x8 cards are listed as discontinued.
-      - Flyvideo 2000S was probably sold as Flyvideo 3000 in some contries(Europe?).
+      - Flyvideo 2000S was probably sold as Flyvideo 3000 in some countries(Europe?).
         The new Flyvideo 2000/3000 are SAA7130/SAA7134 based.
 
 "Flyvideo II" had been the name for the 848 cards, nowadays (in Germany)
index 9314af00d06705921623d6812cdff712ff80e69f..1d7eb8c7bd5c23a623f7dea94d9709d4cf85a6b5 100644 (file)
@@ -29,7 +29,7 @@ de-interlacing by interweaving even and odd lines during transfer
 (without motion compensation which requires the VDIC).
 
 The CSI is the backend capture unit that interfaces directly with
-camera sensors over Parallel, BT.656/1120, and MIPI CSI-2 busses.
+camera sensors over Parallel, BT.656/1120, and MIPI CSI-2 buses.
 
 The IC handles color-space conversion, resizing (downscaling and
 upscaling), horizontal flip, and 90/270 degree rotation operations.
@@ -207,7 +207,7 @@ The CSI supports cropping the incoming raw sensor frames. This is
 implemented in the ipuX_csiY entities at the sink pad, using the
 crop selection subdev API.
 
-The CSI also supports fixed divide-by-two downscaling indepently in
+The CSI also supports fixed divide-by-two downscaling independently in
 width and height. This is implemented in the ipuX_csiY entities at
 the sink pad, using the compose selection subdev API.
 
index e4fbca755e1aa42f7b52c018d5377a080c43ba23..ee1bd96b66dd96975764dd6e2c2fd98539bd3687 100644 (file)
@@ -18,7 +18,7 @@ Global video workflow
 ---------------------
 
 a) QCI stopped
-   Initialy, the QCI interface is stopped.
+   Initially, the QCI interface is stopped.
    When a buffer is queued (pxa_videobuf_ops->buf_queue), the QCI starts.
 
 b) QCI started
index 6b15385b12b3970e7cf802db5a2f41c4db452517..a72e17d09cb7865cdce3f0001c8f469a618bffd2 100644 (file)
@@ -123,7 +123,7 @@ The considerations to split the driver in this particular way are as follows:
 - representing CSIPHY and CSID modules by a separate sub-device for each module
   allows to model the hardware links between these modules;
 - representing VFE by a separate sub-devices for each input interface allows
-  to use the input interfaces concurently and independently as this is
+  to use the input interfaces concurrently and independently as this is
   supported by the hardware;
 - representing ISPIF by a number of sub-devices equal to the number of CSID
   sub-devices allows to create linear media controller pipelines when using two