linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words
@ 2020-07-03 23:55 Randy Dunlap
  2020-07-03 23:55 ` [PATCH 01/11] Documentation: userspace-api/media: dvb/audio: drop doubled word Randy Dunlap
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop all doubled words in Documenation/userspace-api/media/ files.


Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org

 Documentation/userspace-api/media/dvb/audio.rst                       |    2 +-
 Documentation/userspace-api/media/dvb/ca.rst                          |    2 +-
 Documentation/userspace-api/media/dvb/demux.rst                       |    2 +-
 Documentation/userspace-api/media/dvb/dmx-qbuf.rst                    |    2 +-
 Documentation/userspace-api/media/dvb/net.rst                         |    2 +-
 Documentation/userspace-api/media/dvb/video.rst                       |    2 +-
 Documentation/userspace-api/media/v4l/buffer.rst                      |    2 +-
 Documentation/userspace-api/media/v4l/selection-api-configuration.rst |    2 +-
 Documentation/userspace-api/media/v4l/vidioc-g-ext-ctrls.rst          |    2 +-
 Documentation/userspace-api/media/v4l/vidioc-g-output.rst             |    2 +-
 Documentation/userspace-api/media/v4l/vidioc-qbuf.rst                 |    2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 01/11] Documentation: userspace-api/media: dvb/audio: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 02/11] Documentation: userspace-api/media: dvb/ca: " Randy Dunlap
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/audio.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/audio.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/audio.rst
@@ -15,7 +15,7 @@ Digital TV Audio Device
 
 The Digital TV audio device controls the MPEG2 audio decoder of the Digital
 TV hardware. It can be accessed through ``/dev/dvb/adapter?/audio?``. Data
-types and and ioctl definitions can be accessed by including
+types and ioctl definitions can be accessed by including
 ``linux/dvb/audio.h`` in your application.
 
 Please note that some Digital TV cards don’t have their own MPEG decoder, which

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 02/11] Documentation: userspace-api/media: dvb/ca: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
  2020-07-03 23:55 ` [PATCH 01/11] Documentation: userspace-api/media: dvb/audio: drop doubled word Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 03/11] Documentation: userspace-api/media: dvb/demux: " Randy Dunlap
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/ca.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/ca.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/ca.rst
@@ -14,7 +14,7 @@ Digital TV CA Device
 ####################
 
 The Digital TV CA device controls the conditional access hardware. It
-can be accessed through ``/dev/dvb/adapter?/ca?``. Data types and and ioctl
+can be accessed through ``/dev/dvb/adapter?/ca?``. Data types and ioctl
 definitions can be accessed by including ``linux/dvb/ca.h`` in your
 application.
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 03/11] Documentation: userspace-api/media: dvb/demux: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
  2020-07-03 23:55 ` [PATCH 01/11] Documentation: userspace-api/media: dvb/audio: drop doubled word Randy Dunlap
  2020-07-03 23:55 ` [PATCH 02/11] Documentation: userspace-api/media: dvb/ca: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 04/11] Documentation: userspace-api/media: dvb/dmx-qbuf: " Randy Dunlap
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/demux.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/demux.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/demux.rst
@@ -18,7 +18,7 @@ digital TV. If the driver and hardware s
 implemented at the hardware. Otherwise, the Kernel provides a software
 emulation.
 
-It can be accessed through ``/dev/adapter?/demux?``. Data types and and
+It can be accessed through ``/dev/adapter?/demux?``. Data types and
 ioctl definitions can be accessed by including ``linux/dvb/dmx.h`` in
 your application.
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 04/11] Documentation: userspace-api/media: dvb/dmx-qbuf: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (2 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 03/11] Documentation: userspace-api/media: dvb/demux: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 05/11] Documentation: userspace-api/media: dvb/net: " Randy Dunlap
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/dmx-qbuf.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/dmx-qbuf.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/dmx-qbuf.rst
@@ -57,7 +57,7 @@ by a :ref:`DMX_QUERYBUF` ioctl will do a
 When ``DMX_QBUF`` is called with a pointer to this structure, it locks the
 memory pages of the buffer in physical memory, so they cannot be swapped
 out to disk. Buffers remain locked until dequeued, until the
-the device is closed.
+device is closed.
 
 Applications call the ``DMX_DQBUF`` ioctl to dequeue a filled
 (capturing) buffer from the driver's outgoing queue.

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 05/11] Documentation: userspace-api/media: dvb/net: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (3 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 04/11] Documentation: userspace-api/media: dvb/dmx-qbuf: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 06/11] Documentation: userspace-api/media: dvb/video: " Randy Dunlap
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/net.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/net.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/net.rst
@@ -30,7 +30,7 @@ types that are present on the transport
 virtual ``dvb?_?`` network interfaces, and will be controlled/routed via
 the standard ip tools (like ip, route, netstat, ifconfig, etc).
 
-Data types and and ioctl definitions are defined via ``linux/dvb/net.h``
+Data types and ioctl definitions are defined via ``linux/dvb/net.h``
 header.
 
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 06/11] Documentation: userspace-api/media: dvb/video: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (4 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 05/11] Documentation: userspace-api/media: dvb/net: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 07/11] Documentation: userspace-api/media: dvb/audio: " Randy Dunlap
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "and".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/dvb/video.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/dvb/video.rst
+++ linux-next-20200701/Documentation/userspace-api/media/dvb/video.rst
@@ -15,7 +15,7 @@ Digital TV Video Device
 
 The Digital TV video device controls the MPEG2 video decoder of the Digital
 TV hardware. It can be accessed through **/dev/dvb/adapter0/video0**. Data
-types and and ioctl definitions can be accessed by including
+types and ioctl definitions can be accessed by including
 **linux/dvb/video.h** in your application.
 
 Note that the Digital TV video device only controls decoding of the MPEG video

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 07/11] Documentation: userspace-api/media: dvb/audio: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (5 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 06/11] Documentation: userspace-api/media: dvb/video: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 08/11] Documentation: userspace-api/media: v4l/selection-api-config: " Randy Dunlap
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "Any".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/v4l/buffer.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/v4l/buffer.rst
+++ linux-next-20200701/Documentation/userspace-api/media/v4l/buffer.rst
@@ -615,7 +615,7 @@ Buffer Flags
 	:ref:`VIDIOC_DQBUF <VIDIOC_QBUF>` ioctl is called. Due to
 	hardware limitations, the last buffer may be empty. In this case
 	the driver will set the ``bytesused`` field to 0, regardless of
-	the format. Any Any subsequent call to the
+	the format. Any subsequent call to the
 	:ref:`VIDIOC_DQBUF <VIDIOC_QBUF>` ioctl will not block anymore,
 	but return an ``EPIPE`` error code.
     * .. _`V4L2-BUF-FLAG-REQUEST-FD`:

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 08/11] Documentation: userspace-api/media: v4l/selection-api-config: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (6 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 07/11] Documentation: userspace-api/media: dvb/audio: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 09/11] Documentation: userspace-api/media: v4l/vidioc-g-ext-ctrls: " Randy Dunlap
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "in".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/v4l/selection-api-configuration.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/v4l/selection-api-configuration.rst
+++ linux-next-20200701/Documentation/userspace-api/media/v4l/selection-api-configuration.rst
@@ -101,7 +101,7 @@ specified using :ref:`VIDIOC_S_FMT <VIDI
 
 The top left corner, width and height of the source rectangle, that is
 the area from which image date are processed by the hardware, is given
-by the ``V4L2_SEL_TGT_CROP``. Its coordinates are expressed in in the
+by the ``V4L2_SEL_TGT_CROP``. Its coordinates are expressed in the
 same coordinate system as the bounds rectangle. The active cropping area
 must lie completely inside the crop boundaries and the driver may
 further adjust the requested size and/or position according to hardware

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 09/11] Documentation: userspace-api/media: v4l/vidioc-g-ext-ctrls: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (7 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 08/11] Documentation: userspace-api/media: v4l/selection-api-config: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 10/11] Documentation: userspace-api/media: v4l/vidioc-g-output: " Randy Dunlap
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "controls".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/v4l/vidioc-g-ext-ctrls.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/v4l/vidioc-g-ext-ctrls.rst
+++ linux-next-20200701/Documentation/userspace-api/media/v4l/vidioc-g-ext-ctrls.rst
@@ -61,7 +61,7 @@ by the ``controls`` fields.
 To get the current value of a set of controls applications initialize
 the ``id``, ``size`` and ``reserved2`` fields of each struct
 :c:type:`v4l2_ext_control` and call the
-:ref:`VIDIOC_G_EXT_CTRLS <VIDIOC_G_EXT_CTRLS>` ioctl. String controls controls must also set the
+:ref:`VIDIOC_G_EXT_CTRLS <VIDIOC_G_EXT_CTRLS>` ioctl. String controls must also set the
 ``string`` field. Controls of compound types
 (``V4L2_CTRL_FLAG_HAS_PAYLOAD`` is set) must set the ``ptr`` field.
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 10/11] Documentation: userspace-api/media: v4l/vidioc-g-output: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (8 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 09/11] Documentation: userspace-api/media: v4l/vidioc-g-ext-ctrls: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-03 23:55 ` [PATCH 11/11] Documentation: userspace-api/media: v4l/vidioc-qbuf: " Randy Dunlap
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "standard.".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/v4l/vidioc-g-output.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/v4l/vidioc-g-output.rst
+++ linux-next-20200701/Documentation/userspace-api/media/v4l/vidioc-g-output.rst
@@ -53,7 +53,7 @@ To select a video output applications st
 output in an integer and call the :ref:`VIDIOC_S_OUTPUT <VIDIOC_G_OUTPUT>` ioctl with a
 pointer to this integer. Side effects are possible. For example outputs
 may support different video standards, so the driver may implicitly
-switch the current standard. standard. Because of these possible side
+switch the current standard. Because of these possible side
 effects applications must select an output before querying or
 negotiating any other parameters.
 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [PATCH 11/11] Documentation: userspace-api/media: v4l/vidioc-qbuf: drop doubled word
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (9 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 10/11] Documentation: userspace-api/media: v4l/vidioc-g-output: " Randy Dunlap
@ 2020-07-03 23:55 ` Randy Dunlap
  2020-07-04  0:10 ` [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Matthew Wilcox
  2020-07-13 15:49 ` Jonathan Corbet
  12 siblings, 0 replies; 14+ messages in thread
From: Randy Dunlap @ 2020-07-03 23:55 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

Drop the doubled word "the".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: linux-doc@vger.kernel.org
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
 Documentation/userspace-api/media/v4l/vidioc-qbuf.rst |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20200701.orig/Documentation/userspace-api/media/v4l/vidioc-qbuf.rst
+++ linux-next-20200701/Documentation/userspace-api/media/v4l/vidioc-qbuf.rst
@@ -171,7 +171,7 @@ EINVAL
     The buffer ``type`` is not supported, or the ``index`` is out of
     bounds, or no buffers have been allocated yet, or the ``userptr`` or
     ``length`` are invalid, or the ``V4L2_BUF_FLAG_REQUEST_FD`` flag was
-    set but the the given ``request_fd`` was invalid, or ``m.fd`` was
+    set but the given ``request_fd`` was invalid, or ``m.fd`` was
     an invalid DMABUF file descriptor.
 
 EIO

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (10 preceding siblings ...)
  2020-07-03 23:55 ` [PATCH 11/11] Documentation: userspace-api/media: v4l/vidioc-qbuf: " Randy Dunlap
@ 2020-07-04  0:10 ` Matthew Wilcox
  2020-07-13 15:49 ` Jonathan Corbet
  12 siblings, 0 replies; 14+ messages in thread
From: Matthew Wilcox @ 2020-07-04  0:10 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: linux-kernel, Jonathan Corbet, linux-doc, Mauro Carvalho Chehab,
	linux-media

On Fri, Jul 03, 2020 at 04:55:25PM -0700, Randy Dunlap wrote:
> Drop all doubled words in Documenation/userspace-api/media/ files.

Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>

(for the series)

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words
  2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
                   ` (11 preceding siblings ...)
  2020-07-04  0:10 ` [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Matthew Wilcox
@ 2020-07-13 15:49 ` Jonathan Corbet
  12 siblings, 0 replies; 14+ messages in thread
From: Jonathan Corbet @ 2020-07-13 15:49 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel, linux-doc, Mauro Carvalho Chehab, linux-media

On Fri,  3 Jul 2020 16:55:25 -0700
Randy Dunlap <rdunlap@infradead.org> wrote:

> Drop all doubled words in Documenation/userspace-api/media/ files.
> 
> 
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: linux-doc@vger.kernel.org
> Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
> Cc: linux-media@vger.kernel.org
> 
>  Documentation/userspace-api/media/dvb/audio.rst                       |    2 +-
>  Documentation/userspace-api/media/dvb/ca.rst                          |    2 +-
>  Documentation/userspace-api/media/dvb/demux.rst                       |    2 +-
>  Documentation/userspace-api/media/dvb/dmx-qbuf.rst                    |    2 +-
>  Documentation/userspace-api/media/dvb/net.rst                         |    2 +-
>  Documentation/userspace-api/media/dvb/video.rst                       |    2 +-
>  Documentation/userspace-api/media/v4l/buffer.rst                      |    2 +-
>  Documentation/userspace-api/media/v4l/selection-api-configuration.rst |    2 +-
>  Documentation/userspace-api/media/v4l/vidioc-g-ext-ctrls.rst          |    2 +-
>  Documentation/userspace-api/media/v4l/vidioc-g-output.rst             |    2 +-
>  Documentation/userspace-api/media/v4l/vidioc-qbuf.rst                 |    2 +-
>  11 files changed, 11 insertions(+), 11 deletions(-)
> 
Mauro, I've been assuming you'll grab these; let me know if you'd rather I
just pick them up.

Thanks,

jon

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-07-13 15:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-03 23:55 [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Randy Dunlap
2020-07-03 23:55 ` [PATCH 01/11] Documentation: userspace-api/media: dvb/audio: drop doubled word Randy Dunlap
2020-07-03 23:55 ` [PATCH 02/11] Documentation: userspace-api/media: dvb/ca: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 03/11] Documentation: userspace-api/media: dvb/demux: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 04/11] Documentation: userspace-api/media: dvb/dmx-qbuf: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 05/11] Documentation: userspace-api/media: dvb/net: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 06/11] Documentation: userspace-api/media: dvb/video: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 07/11] Documentation: userspace-api/media: dvb/audio: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 08/11] Documentation: userspace-api/media: v4l/selection-api-config: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 09/11] Documentation: userspace-api/media: v4l/vidioc-g-ext-ctrls: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 10/11] Documentation: userspace-api/media: v4l/vidioc-g-output: " Randy Dunlap
2020-07-03 23:55 ` [PATCH 11/11] Documentation: userspace-api/media: v4l/vidioc-qbuf: " Randy Dunlap
2020-07-04  0:10 ` [PATCH 00/11] Documentation: userspace-api/media: eliminate duplicated words Matthew Wilcox
2020-07-13 15:49 ` Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).