From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751954AbbEHI7M (ORCPT ); Fri, 8 May 2015 04:59:12 -0400 Received: from mga01.intel.com ([192.55.52.88]:7664 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750907AbbEHI7J (ORCPT ); Fri, 8 May 2015 04:59:09 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,389,1427785200"; d="scan'208";a="568268059" Date: Fri, 8 May 2015 14:30:00 +0530 From: Vinod Koul To: Leonardo Carreras Cc: Dan Williams , dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: Re: [PATCH v2] dmaengine: pl08x: Suppress spaces in indentation Message-ID: <20150508090000.GA3521@localhost> References: <20150505234052.GA22311@leo-Inspiron-N5110> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150505234052.GA22311@leo-Inspiron-N5110> 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 Tue, May 05, 2015 at 07:40:52PM -0400, Leonardo Carreras wrote: > Removed checkpatch reported spaces in indentation: > ERROR: code indent should use tabs where possible > +^I PL080_CONFIG_TC_IRQ_MASK);$ > Applied, thanks -- ~Vinod > Signed-off-by: Leonardo Carreras > --- > drivers/dma/amba-pl08x.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c > index 49d396e..5de3cf4 100644 > --- a/drivers/dma/amba-pl08x.c > +++ b/drivers/dma/amba-pl08x.c > @@ -474,7 +474,7 @@ static void pl08x_terminate_phy_chan(struct pl08x_driver_data *pl08x, > u32 val = readl(ch->reg_config); > > val &= ~(PL080_CONFIG_ENABLE | PL080_CONFIG_ERR_IRQ_MASK | > - PL080_CONFIG_TC_IRQ_MASK); > + PL080_CONFIG_TC_IRQ_MASK); > > writel(val, ch->reg_config); > > -- > 1.7.9.5 > --