From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre-Louis Bossart Subject: Re: [PATCH 3/6] ALSA: hda: intel-nhlt: remove useless OR operation Date: Fri, 19 Jul 2019 13:20:58 -0500 Message-ID: <2ea75a45-94f2-e6f7-a374-4317467f4612@linux.intel.com> References: <20190719170610.17610-1-pierre-louis.bossart@linux.intel.com> <20190719170610.17610-4-pierre-louis.bossart@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 2437BF8015B for ; Fri, 19 Jul 2019 20:21:01 +0200 (CEST) In-Reply-To: Content-Language: en-US List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" To: Takashi Iwai Cc: Hui Wang , Curtis Malainey , alsa-devel@alsa-project.org, broonie@kernel.org, Daniel Drake List-Id: alsa-devel@alsa-project.org Thanks for the quick review Takashi, much appreciated. On 7/19/19 1:09 PM, Takashi Iwai wrote: > On Fri, 19 Jul 2019 19:06:07 +0200, > Pierre-Louis Bossart wrote: >> >> Each assignment is final so there's no point in doing an OR. >> >> Signed-off-by: Pierre-Louis Bossart > > Please fold into the patch 2. There is no reason to split. Sure. I just wanted to keep this separate since patch2 is mostly about moving code. No problem to squash it. > > > thanks, > > Takashi > >> --- >> sound/hda/intel-nhlt.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/sound/hda/intel-nhlt.c b/sound/hda/intel-nhlt.c >> index b9d00c1b25d5..7ba871e470f2 100644 >> --- a/sound/hda/intel-nhlt.c >> +++ b/sound/hda/intel-nhlt.c >> @@ -73,13 +73,13 @@ int intel_nhlt_get_dmic_geo(struct device *dev, struct nhlt_acpi_table *nhlt) >> switch (cfg->array_type) { >> case NHLT_MIC_ARRAY_2CH_SMALL: >> case NHLT_MIC_ARRAY_2CH_BIG: >> - dmic_geo |= MIC_ARRAY_2CH; >> + dmic_geo = MIC_ARRAY_2CH; >> break; >> >> case NHLT_MIC_ARRAY_4CH_1ST_GEOM: >> case NHLT_MIC_ARRAY_4CH_L_SHAPED: >> case NHLT_MIC_ARRAY_4CH_2ND_GEOM: >> - dmic_geo |= MIC_ARRAY_4CH; >> + dmic_geo = MIC_ARRAY_4CH; >> break; >> >> default: >> -- >> 2.20.1 >> > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@alsa-project.org > https://mailman.alsa-project.org/mailman/listinfo/alsa-devel >