From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756942AbbEVM2w (ORCPT ); Fri, 22 May 2015 08:28:52 -0400 Received: from mga09.intel.com ([134.134.136.24]:32288 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756780AbbEVM2r (ORCPT ); Fri, 22 May 2015 08:28:47 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,475,1427785200"; d="scan'208";a="497023990" Date: Fri, 22 May 2015 17:59:53 +0530 From: Vinod Koul To: Geert Uytterhoeven Cc: Jonathan Corbet , Jiri Kosina , linux-doc@vger.kernel.org, dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH trivial] DMA-API: Spelling s/This/Think/ Message-ID: <20150522122953.GX3140@localhost> References: <1432209427-20233-1-git-send-email-geert+renesas@glider.be> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1432209427-20233-1-git-send-email-geert+renesas@glider.be> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 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 > --