From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752123AbbKBJQs (ORCPT ); Mon, 2 Nov 2015 04:16:48 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:11574 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751049AbbKBJQo (ORCPT ); Mon, 2 Nov 2015 04:16:44 -0500 X-IronPort-AV: E=Sophos;i="5.20,234,1444687200"; d="scan'208";a="185553524" Date: Mon, 2 Nov 2015 10:16:40 +0100 (CET) From: Julia Lawall X-X-Sender: jll@hadrien To: Takashi Sakamoto cc: kbuild-all@01.org, Takashi Iwai , Clemens Ladisch , Jaroslav Kysela , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] ALSA: firewire-lib: fix compare_const_fl.cocci warnings In-Reply-To: <5637288B.8010007@sakamocchi.jp> Message-ID: References: <56370A2B.6080402@sakamocchi.jp> <5637288B.8010007@sakamocchi.jp> User-Agent: Alpine 2.10 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2 Nov 2015, Takashi Sakamoto wrote: > Hi Julia, > > On Nov 02 2015 16:20, Julia Lawall wrote: > > On Mon, 2 Nov 2015, Takashi Sakamoto wrote: > > > > > Hi, > > > > > > On Nov 02 2015 15:55, Julia Lawall wrote: > > > > Move constant to the right of binary operators. > > > > > > > > Generated by: scripts/coccinelle/misc/compare_const_fl.cocci > > > > > > > > CC: Takashi Sakamoto > > > > Signed-off-by: Fengguang Wu > > > > Signed-off-by: Julia Lawall > > > > --- > > > > > > > > Depends on personal taste, but the modified version does look a little > > > > nicer to me, since one can better see the relationship between the fdf > > > > and sfc fields. > > > > > > > > amdtp-am824.c | 2 +- > > > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > > > > > --- a/sound/firewire/amdtp-am824.c > > > > +++ b/sound/firewire/amdtp-am824.c > > > > @@ -36,7 +36,7 @@ int amdtp_am824_set_parameters(struct am > > > > if (err < 0) > > > > return err; > > > > > > > > - s->fdf = AMDTP_FDF_AM824 | s->sfc; > > > > + s->fdf = s->sfc | AMDTP_FDF_AM824; > > > > > > > > /* > > > > * In IEC 61883-6, one data block represents one event. In > > > > ALSA, one > > > > > > Could I request explainations about the advantage of this modification? I > > > cannot imagine good reasons for this subtle changes... > > > > I put the reason under the --- (better see the relationship between fdf > > and sfc). But if you think the code makes more sense as it is, just > > ignore the patch. > > Mmm. I'm sorry but I'm not wiling to add 'Reviewed-by' tag to this patch > because the reason is non-functional and personal. OK, no problem. julia