All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH trivial] DMA-API: Spelling s/This/Think/
@ 2015-05-21 11:57 Geert Uytterhoeven
  2015-05-22 12:29 ` Vinod Koul
  0 siblings, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2015-05-21 11:57 UTC (permalink / raw)
  To: Vinod Koul, Jonathan Corbet, Jiri Kosina
  Cc: linux-doc, dmaengine, linux-kernel, Geert Uytterhoeven

Also remove spaces before TABs while we're at it.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 Documentation/DMA-API-HOWTO.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/DMA-API-HOWTO.txt b/Documentation/DMA-API-HOWTO.txt
index 0f7afb2bb442e07f..16b6f9509cb65b62 100644
--- a/Documentation/DMA-API-HOWTO.txt
+++ b/Documentation/DMA-API-HOWTO.txt
@@ -240,7 +240,7 @@ the case would look like this:
 
 	if (!dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64))) {
 		using_dac = 1;
-	   	consistent_using_dac = 1;
+		consistent_using_dac = 1;
 	} else if (!dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32))) {
 		using_dac = 0;
 		consistent_using_dac = 0;
@@ -353,7 +353,7 @@ There are two types of DMA mappings:
   transfer, unmapped right after it (unless you use dma_sync_* below)
   and for which hardware can optimize for sequential accesses.
 
-  This of "streaming" as "asynchronous" or "outside the coherency
+  Think of "streaming" as "asynchronous" or "outside the coherency
   domain".
 
   Good examples of what to use streaming mappings for are:
-- 
1.9.1


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

* Re: [PATCH trivial] DMA-API: Spelling s/This/Think/
  2015-05-21 11:57 [PATCH trivial] DMA-API: Spelling s/This/Think/ Geert Uytterhoeven
@ 2015-05-22 12:29 ` Vinod Koul
  2015-05-22 12:55   ` Geert Uytterhoeven
  2015-05-22 13:16   ` Jonathan Corbet
  0 siblings, 2 replies; 4+ messages in thread
From: Vinod Koul @ 2015-05-22 12:29 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Jonathan Corbet, Jiri Kosina, linux-doc, dmaengine, linux-kernel

On Thu, May 21, 2015 at 01:57:07PM +0200, Geert Uytterhoeven wrote:
> Also remove spaces before TABs while we're at it.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Looks good to me, but the question si which tree does this go thru..

-- 
~Vinod

> ---
>  Documentation/DMA-API-HOWTO.txt | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/DMA-API-HOWTO.txt b/Documentation/DMA-API-HOWTO.txt
> index 0f7afb2bb442e07f..16b6f9509cb65b62 100644
> --- a/Documentation/DMA-API-HOWTO.txt
> +++ b/Documentation/DMA-API-HOWTO.txt
> @@ -240,7 +240,7 @@ the case would look like this:
>  
>  	if (!dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64))) {
>  		using_dac = 1;
> -	   	consistent_using_dac = 1;
> +		consistent_using_dac = 1;
>  	} else if (!dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32))) {
>  		using_dac = 0;
>  		consistent_using_dac = 0;
> @@ -353,7 +353,7 @@ There are two types of DMA mappings:
>    transfer, unmapped right after it (unless you use dma_sync_* below)
>    and for which hardware can optimize for sequential accesses.
>  
> -  This of "streaming" as "asynchronous" or "outside the coherency
> +  Think of "streaming" as "asynchronous" or "outside the coherency
>    domain".
>  
>    Good examples of what to use streaming mappings for are:
> -- 
> 1.9.1
> 

-- 

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

* Re: [PATCH trivial] DMA-API: Spelling s/This/Think/
  2015-05-22 12:29 ` Vinod Koul
@ 2015-05-22 12:55   ` Geert Uytterhoeven
  2015-05-22 13:16   ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2015-05-22 12:55 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Geert Uytterhoeven, Jonathan Corbet, Jiri Kosina,
	linux-doc@vger.kernel.org, dmaengine,
	linux-kernel@vger.kernel.org

Hi Vinod,

On Fri, May 22, 2015 at 2:29 PM, Vinod Koul <vinod.koul@intel.com> wrote:
> On Thu, May 21, 2015 at 01:57:07PM +0200, Geert Uytterhoeven wrote:
>> Also remove spaces before TABs while we're at it.
>>
>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Looks good to me, but the question si which tree does this go thru..

Whoever takes it first?

I will resend all non-applied trivial patches from 2015 to Jiri in
January 2016 ;-)

Thanks!

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH trivial] DMA-API: Spelling s/This/Think/
  2015-05-22 12:29 ` Vinod Koul
  2015-05-22 12:55   ` Geert Uytterhoeven
@ 2015-05-22 13:16   ` Jonathan Corbet
  1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Corbet @ 2015-05-22 13:16 UTC (permalink / raw)
  To: Vinod Koul
  Cc: Geert Uytterhoeven, Jiri Kosina, linux-doc, dmaengine,
	linux-kernel

On Fri, 22 May 2015 17:59:53 +0530
Vinod Koul <vinod.koul@intel.com> wrote:

> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>  
> Looks good to me, but the question si which tree does this go thru..

I'll take it through the docs tree.

Thanks,

jon

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

end of thread, other threads:[~2015-05-22 13:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-21 11:57 [PATCH trivial] DMA-API: Spelling s/This/Think/ Geert Uytterhoeven
2015-05-22 12:29 ` Vinod Koul
2015-05-22 12:55   ` Geert Uytterhoeven
2015-05-22 13:16   ` Jonathan Corbet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.