From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0AB3A6AD9 for ; Mon, 14 Mar 2022 22:07:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2E8A0C340E9; Mon, 14 Mar 2022 22:07:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1647295621; bh=ICh66fxhgwpO5RAgPSp5R1pdsftDqr3eOFQyVmWHtv4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ewtWIpqRSmFuZEjh0N2QSwALxm6+U0Dcpyd0/GCmrj8/e96YkBXvkAOpRN41qtXZe FrjPPTasHuiKnzXt9wSSF9xN73o4JmGeJIpNqdTdunttJkzEeJIZiPpizTYB1denO/ ooXrac87wrTxrdPWCX+gjfsPwNjS9XgWBQ1nFuj36qj5WfqvxeKkl7yzktYBK0zKwi dcxGX+Injh2W+y1MZFN6xB/da0luNDV0h/EbFFtbNpZN17fgLAbAAmRKdN/2unKQnj brlzeMRn3T3LTAAMr0gVk8bbcW7AfmkRaj9kyDBDLdPZQSwy+7z7hOuFVRxdIoC0Vc GtBO/0AtMuQDQ== Date: Mon, 14 Mar 2022 15:06:54 -0700 From: Nathan Chancellor To: Alviro Iskandar Setiawan Cc: Mark Brown , Alviro Iskandar Setiawan , Codrin Ciubotariu , Nugraha , llvm@lists.linux.dev, kbuild-all@lists.01.org, gwml@vger.gnuweeb.org, linux-kernel@vger.kernel.org, kernel test robot Subject: Re: [PATCH] ASoC: atmel: mchp-pdmc: Fix `-Wpointer-bool-conversion` warning Message-ID: References: <202203091430.MLY27Bif-lkp@intel.com> <20220309065849.96165-1-alviro.iskandar@gnuweeb.org> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220309065849.96165-1-alviro.iskandar@gnuweeb.org> Hi Alviro, On Wed, Mar 09, 2022 at 06:58:49AM +0000, Alviro Iskandar Setiawan wrote: > In function mchp_pdmc_af_put(), Intel's kernel test robot reports the > following warning: > > sound/soc/atmel/mchp-pdmc.c:186:34: warning: address of array \ > 'uvalue->value.integer.value' will always evaluate to 'true' \ > [-Wpointer-bool-conversion] > > This is because we are using `uvalue->value.integer.value` which its > type is `long value[128];` for conditional expression and that array > will always decay to a non-NULL pointer. Using a non-NULL pointer for > conditional expression will always evaluate to true. > > Fix this by changing it to `uvalue->value.integer.value[0]` as that's > what the mchp_pdmc_af_get() function sets. > > To: Mark Brown > Cc: Codrin Ciubotariu > Cc: Nugraha > Cc: llvm@lists.linux.dev > Cc: kbuild-all@lists.01.org > Cc: gwml@vger.gnuweeb.org > Cc: linux-kernel@vger.kernel.org I would recommend removing these and just setting those values via git send-email flags. In other words: git send-email --to "..." --cc "..." --cc "..." and so on. It can cause a lot of spam if this patch is ever backported or needed in other trees. > Reported-by: kernel test robot > Link: https://lore.kernel.org/lkml/202203091430.MLY27Bif-lkp@intel.com > Fixes: 50291652af5269813baa6024eb0e81b5f0bbb451 ("ASoC: atmel: mchp-pdmc: add PDMC driver") This should be simplified to: Fixes: 50291652af52 ("ASoC: atmel: mchp-pdmc: add PDMC driver") I don't think the automated checkers will complain about that but the short form is preferred. > Signed-off-by: Alviro Iskandar Setiawan Thanks a lot for the patch! Reviewed-by: Nathan Chancellor I don't know if those nits are worth resending but I do not see this applied to Mark's tree yet. It might have gotten lost because this was sent as a reply to the build report, rather than its own thread, which has caused issues for me in the past: https://lore.kernel.org/r/20210903162639.GM4932@sirena.org.uk/ If there is no action on this patch in the next couple of days, please consider resending with the above nits addressed with Codrin's tag and my tag. > --- > sound/soc/atmel/mchp-pdmc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/soc/atmel/mchp-pdmc.c b/sound/soc/atmel/mchp-pdmc.c > index c44636f6207d..7b87f75c284c 100644 > --- a/sound/soc/atmel/mchp-pdmc.c > +++ b/sound/soc/atmel/mchp-pdmc.c > @@ -183,7 +183,7 @@ static int mchp_pdmc_af_put(struct snd_kcontrol *kcontrol, > { > struct snd_soc_component *component = snd_kcontrol_chip(kcontrol); > struct mchp_pdmc *dd = snd_soc_component_get_drvdata(component); > - bool af = uvalue->value.integer.value ? true : false; > + bool af = uvalue->value.integer.value[0] ? true : false; > > if (dd->audio_filter_en == af) > return 0; > > base-commit: 50291652af5269813baa6024eb0e81b5f0bbb451 > -- > 2.27.0 > > From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============8190201019455390649==" MIME-Version: 1.0 From: Nathan Chancellor To: kbuild-all@lists.01.org Subject: Re: [PATCH] ASoC: atmel: mchp-pdmc: Fix `-Wpointer-bool-conversion` warning Date: Mon, 14 Mar 2022 15:06:54 -0700 Message-ID: In-Reply-To: <20220309065849.96165-1-alviro.iskandar@gnuweeb.org> List-Id: --===============8190201019455390649== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Hi Alviro, On Wed, Mar 09, 2022 at 06:58:49AM +0000, Alviro Iskandar Setiawan wrote: > In function mchp_pdmc_af_put(), Intel's kernel test robot reports the > following warning: > = > sound/soc/atmel/mchp-pdmc.c:186:34: warning: address of array \ > 'uvalue->value.integer.value' will always evaluate to 'true' \ > [-Wpointer-bool-conversion] > = > This is because we are using `uvalue->value.integer.value` which its > type is `long value[128];` for conditional expression and that array > will always decay to a non-NULL pointer. Using a non-NULL pointer for > conditional expression will always evaluate to true. > = > Fix this by changing it to `uvalue->value.integer.value[0]` as that's > what the mchp_pdmc_af_get() function sets. > = > To: Mark Brown > Cc: Codrin Ciubotariu > Cc: Nugraha > Cc: llvm(a)lists.linux.dev > Cc: kbuild-all(a)lists.01.org > Cc: gwml(a)vger.gnuweeb.org > Cc: linux-kernel(a)vger.kernel.org I would recommend removing these and just setting those values via git send-email flags. In other words: git send-email --to "..." --cc "..." --cc "..." and so on. It can cause a lot of spam if this patch is ever backported or needed in other trees. > Reported-by: kernel test robot > Link: https://lore.kernel.org/lkml/202203091430.MLY27Bif-lkp(a)intel.com > Fixes: 50291652af5269813baa6024eb0e81b5f0bbb451 ("ASoC: atmel: mchp-pdmc:= add PDMC driver") This should be simplified to: Fixes: 50291652af52 ("ASoC: atmel: mchp-pdmc: add PDMC driver") I don't think the automated checkers will complain about that but the short form is preferred. > Signed-off-by: Alviro Iskandar Setiawan Thanks a lot for the patch! Reviewed-by: Nathan Chancellor I don't know if those nits are worth resending but I do not see this applied to Mark's tree yet. It might have gotten lost because this was sent as a reply to the build report, rather than its own thread, which has caused issues for me in the past: https://lore.kernel.org/r/20210903162639.GM4932(a)sirena.org.uk/ If there is no action on this patch in the next couple of days, please consider resending with the above nits addressed with Codrin's tag and my tag. > --- > sound/soc/atmel/mchp-pdmc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > = > diff --git a/sound/soc/atmel/mchp-pdmc.c b/sound/soc/atmel/mchp-pdmc.c > index c44636f6207d..7b87f75c284c 100644 > --- a/sound/soc/atmel/mchp-pdmc.c > +++ b/sound/soc/atmel/mchp-pdmc.c > @@ -183,7 +183,7 @@ static int mchp_pdmc_af_put(struct snd_kcontrol *kcon= trol, > { > struct snd_soc_component *component =3D snd_kcontrol_chip(kcontrol); > struct mchp_pdmc *dd =3D snd_soc_component_get_drvdata(component); > - bool af =3D uvalue->value.integer.value ? true : false; > + bool af =3D uvalue->value.integer.value[0] ? true : false; > = > if (dd->audio_filter_en =3D=3D af) > return 0; > = > base-commit: 50291652af5269813baa6024eb0e81b5f0bbb451 > -- = > 2.27.0 > = >=20 --===============8190201019455390649==--