linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dma-buf: Couple of documentation typo fixes
@ 2020-04-20  7:41 Gal Pressman
  2020-04-20 23:00 ` Jonathan Corbet
  0 siblings, 1 reply; 5+ messages in thread
From: Gal Pressman @ 2020-04-20  7:41 UTC (permalink / raw)
  To: Sumit Semwal, Jonathan Corbet
  Cc: linux-media, dri-devel, linux-doc, Gal Pressman

Fix a couple of typos: "as" -> "has" and "int" -> "in".

Signed-off-by: Gal Pressman <galpress@amazon.com>
---
 Documentation/driver-api/dma-buf.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/driver-api/dma-buf.rst b/Documentation/driver-api/dma-buf.rst
index c78db28519f7..63dec76d1d8d 100644
--- a/Documentation/driver-api/dma-buf.rst
+++ b/Documentation/driver-api/dma-buf.rst
@@ -11,7 +11,7 @@ course not limited to GPU use cases.
 The three main components of this are: (1) dma-buf, representing a
 sg_table and exposed to userspace as a file descriptor to allow passing
 between devices, (2) fence, which provides a mechanism to signal when
-one device as finished access, and (3) reservation, which manages the
+one device has finished access, and (3) reservation, which manages the
 shared or exclusive fence(s) associated with the buffer.
 
 Shared DMA Buffers
@@ -31,7 +31,7 @@ The exporter
  - implements and manages operations in :c:type:`struct dma_buf_ops
    <dma_buf_ops>` for the buffer,
  - allows other users to share the buffer by using dma_buf sharing APIs,
- - manages the details of buffer allocation, wrapped int a :c:type:`struct
+ - manages the details of buffer allocation, wrapped in a :c:type:`struct
    dma_buf <dma_buf>`,
  - decides about the actual backing storage where this allocation happens,
  - and takes care of any migration of scatterlist - for all (shared) users of

base-commit: 8f3d9f354286745c751374f5f1fcafee6b3f3136
-- 
2.26.1


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

* Re: [PATCH] dma-buf: Couple of documentation typo fixes
  2020-04-20  7:41 [PATCH] dma-buf: Couple of documentation typo fixes Gal Pressman
@ 2020-04-20 23:00 ` Jonathan Corbet
  2020-04-21 12:38   ` Daniel Vetter
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2020-04-20 23:00 UTC (permalink / raw)
  To: Gal Pressman; +Cc: Sumit Semwal, linux-media, dri-devel, linux-doc

On Mon, 20 Apr 2020 10:41:15 +0300
Gal Pressman <galpress@amazon.com> wrote:

> Fix a couple of typos: "as" -> "has" and "int" -> "in".
> 
> Signed-off-by: Gal Pressman <galpress@amazon.com>

Applied, thanks.

jon

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

* Re: [PATCH] dma-buf: Couple of documentation typo fixes
  2020-04-20 23:00 ` Jonathan Corbet
@ 2020-04-21 12:38   ` Daniel Vetter
  2020-04-21 16:32     ` Jonathan Corbet
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Vetter @ 2020-04-21 12:38 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: Gal Pressman, linux-doc, dri-devel, linux-media

On Mon, Apr 20, 2020 at 05:00:59PM -0600, Jonathan Corbet wrote:
> On Mon, 20 Apr 2020 10:41:15 +0300
> Gal Pressman <galpress@amazon.com> wrote:
> 
> > Fix a couple of typos: "as" -> "has" and "int" -> "in".
> > 
> > Signed-off-by: Gal Pressman <galpress@amazon.com>
> 
> Applied, thanks.

Also applied to drm-misc-next, the dma-buf stuff is maintained as part of
drm. And maybe I actually get around to doing the doc polish for all
things dma-buf that I've been promised to do since months :-)

Cheers, Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

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

* Re: [PATCH] dma-buf: Couple of documentation typo fixes
  2020-04-21 12:38   ` Daniel Vetter
@ 2020-04-21 16:32     ` Jonathan Corbet
  2020-04-23 11:46       ` Daniel Vetter
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Corbet @ 2020-04-21 16:32 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Gal Pressman, linux-doc, dri-devel, linux-media

On Tue, 21 Apr 2020 14:38:37 +0200
Daniel Vetter <daniel@ffwll.ch> wrote:

> On Mon, Apr 20, 2020 at 05:00:59PM -0600, Jonathan Corbet wrote:
> > On Mon, 20 Apr 2020 10:41:15 +0300
> > Gal Pressman <galpress@amazon.com> wrote:
> >   
> > > Fix a couple of typos: "as" -> "has" and "int" -> "in".
> > > 
> > > Signed-off-by: Gal Pressman <galpress@amazon.com>  
> > 
> > Applied, thanks.  
> 
> Also applied to drm-misc-next, the dma-buf stuff is maintained as part of
> drm. And maybe I actually get around to doing the doc polish for all
> things dma-buf that I've been promised to do since months :-)

I actually looked for it in linux-next before applying, but didn't (and
don't) see it there...?

Thanks,

jon

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

* Re: [PATCH] dma-buf: Couple of documentation typo fixes
  2020-04-21 16:32     ` Jonathan Corbet
@ 2020-04-23 11:46       ` Daniel Vetter
  0 siblings, 0 replies; 5+ messages in thread
From: Daniel Vetter @ 2020-04-23 11:46 UTC (permalink / raw)
  To: Jonathan Corbet
  Cc: Gal Pressman, Linux Doc Mailing List, dri-devel,
	open list:DMA BUFFER SHARING FRAMEWORK

On Tue, Apr 21, 2020 at 6:32 PM Jonathan Corbet <corbet@lwn.net> wrote:
>
> On Tue, 21 Apr 2020 14:38:37 +0200
> Daniel Vetter <daniel@ffwll.ch> wrote:
>
> > On Mon, Apr 20, 2020 at 05:00:59PM -0600, Jonathan Corbet wrote:
> > > On Mon, 20 Apr 2020 10:41:15 +0300
> > > Gal Pressman <galpress@amazon.com> wrote:
> > >
> > > > Fix a couple of typos: "as" -> "has" and "int" -> "in".
> > > >
> > > > Signed-off-by: Gal Pressman <galpress@amazon.com>
> > >
> > > Applied, thanks.
> >
> > Also applied to drm-misc-next, the dma-buf stuff is maintained as part of
> > drm. And maybe I actually get around to doing the doc polish for all
> > things dma-buf that I've been promised to do since months :-)
>
> I actually looked for it in linux-next before applying, but didn't (and
> don't) see it there...?

I only spotted the patch after I've seen your notification, so it was
indeed not there back then. But now it should be there:

commit 776d58823a60c689816972b51100cb322a0834ce (HEAD ->
drm-misc-next, drm-misc/for-linux-next, drm-misc/drm-misc-next)
Author: Gal Pressman <galpress@amazon.com>
Date:   Mon Apr 20 10:41:15 2020 +0300

    dma-buf: Couple of documentation typo fixes

drm-misc/for-linux-next is included in linux-next (we have some
special branches for linux-next because of some different rules than
usual for our committers). Latest linux-next also seems to have it by
now.
-Daniel



-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

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

end of thread, other threads:[~2020-04-23 11:46 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-20  7:41 [PATCH] dma-buf: Couple of documentation typo fixes Gal Pressman
2020-04-20 23:00 ` Jonathan Corbet
2020-04-21 12:38   ` Daniel Vetter
2020-04-21 16:32     ` Jonathan Corbet
2020-04-23 11:46       ` Daniel Vetter

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).