From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ashish Chavan Subject: Re: [PATCH] ASoC: da7210: Minor update for PLL and SRM Date: Tue, 17 Apr 2012 21:00:02 +0530 Message-ID: <1334676602.13279.13.camel@matrix> References: <1334674858.13279.9.camel@matrix> <20120417145618.GL6652@opensource.wolfsonmicro.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from ch1outboundpool.messaging.microsoft.com (ch1ehsobe002.messaging.microsoft.com [216.32.181.182]) by alsa0.perex.cz (Postfix) with ESMTP id 34F8D10416D for ; Tue, 17 Apr 2012 17:18:13 +0200 (CEST) In-Reply-To: <20120417145618.GL6652@opensource.wolfsonmicro.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@alsa-project.org Errors-To: alsa-devel-bounces@alsa-project.org To: Mark Brown Cc: alsa-devel , "kuninori.morimoto.gx" , linux-kernel , David@alsa-project.org, Chen , lrg List-Id: alsa-devel@alsa-project.org On Tue, 2012-04-17 at 15:56 +0100, Mark Brown wrote: > On Tue, Apr 17, 2012 at 08:30:58PM +0530, Ashish Chavan wrote: > > > + if ((fref == da7210_pll_div[cnt].fref) && > > + (da7210->master == da7210_pll_div[cnt].mode) && > > + (fout == da7210_pll_div[cnt].fout)) { > > Since this is just a coding style thing how about lining up the (s for > the branches? To do that we will have to use spaces instead of tab for indentation. I am not sure if that is fine. You mean something like below, right? if ((fref == da7210_pll_div[cnt].fref) && (da7210->master == da7210_pll_div[cnt].mode) && (fout == da7210_pll_div[cnt].fout)) {