devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Vlad Karpovich <vkarpovi@opensource.cirrus.com>
To: Charles Keepax <ckeepax@opensource.cirrus.com>
Cc: James Schulman <james.schulman@cirrus.com>,
	David Rhodes <david.rhodes@cirrus.com>,
	Richard Fitzgerald <rf@opensource.cirrus.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>, Jaroslav Kysela <perex@perex.cz>,
	Takashi Iwai <tiwai@suse.com>, "Rob Herring" <robh+dt@kernel.org>,
	<alsa-devel@alsa-project.org>, <patches@opensource.cirrus.com>,
	<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
	Ricardo Rivera-Matos <rriveram@opensource.cirrus.com>
Subject: Re: [PATCH 3/7] ASoC: cs35l45: Checks index of cs35l45_irqs[]
Date: Tue, 29 Aug 2023 13:17:23 -0500	[thread overview]
Message-ID: <20230829131723.f0df743f3ce9293878422cc3@opensource.cirrus.com> (raw)
In-Reply-To: <20230829100751.GR103419@ediswmail.ad.cirrus.com>

On Tue, 29 Aug 2023 10:07:51 +0000
Charles Keepax <ckeepax@opensource.cirrus.com> wrote:

> On Mon, Aug 28, 2023 at 12:05:21PM -0500, Vlad Karpovich wrote:
> > Checks the index computed by the virq offset before printing the
> > error condition in cs35l45_spk_safe_err() handler.
> > 
> > Signed-off-by: Ricardo Rivera-Matos <rriveram@opensource.cirrus.com>
> > Signed-off-by: Vlad Karpovich <vkarpovi@opensource.cirrus.com>
> > ---
> >  sound/soc/codecs/cs35l45.c | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> > 
> > diff --git a/sound/soc/codecs/cs35l45.c b/sound/soc/codecs/cs35l45.c
> > index 40fb64904260..2c9b41171a05 100644
> > --- a/sound/soc/codecs/cs35l45.c
> > +++ b/sound/soc/codecs/cs35l45.c
> > @@ -1023,7 +1023,10 @@ static irqreturn_t cs35l45_spk_safe_err(int irq, void *data)
> >  
> >  	i = irq - regmap_irq_get_virq(cs35l45->irq_data, 0);
> >  
> > -	dev_err(cs35l45->dev, "%s condition detected!\n", cs35l45_irqs[i].name);
> > +	if (i < 0 || i > 6)
> 
> This looks a little odd, there appear to be 8 IRQs attached to
> this function whereas this says 6. Also this check seems like
> it will be hard to keep in sync as things change.
> 
> Assuming this error check is actually necessary, would it be
> perhaps better to check i is smaller than ARRAY_SIZE(cs35l45_irqs)
> and check that the attached function is cs35l45_spk_safe_err.
> That should be more robust against future changes to the IRQs.
> 
> Thanks,
> Charles
Thank you. It was picked up from a different branch,I will change to ARRAY_SIZE.

-- 
Vlad Karpovich <vkarpovi@opensource.cirrus.com>

  reply	other threads:[~2023-08-29 18:19 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-28 17:05 [PATCH 1/7] ASoC: cs35l45: Add support for Chip ID 0x35A460 Vlad Karpovich
2023-08-28 17:05 ` [PATCH 2/7] ASoC: cs35l45: Fix "Dead assigment" warning Vlad Karpovich
2023-08-29 10:04   ` Charles Keepax
2023-08-28 17:05 ` [PATCH 3/7] ASoC: cs35l45: Checks index of cs35l45_irqs[] Vlad Karpovich
2023-08-29 10:07   ` Charles Keepax
2023-08-29 18:17     ` Vlad Karpovich [this message]
2023-08-28 17:05 ` [PATCH 4/7] ASoC: cs35l45: Analog PCM Volume and Amplifier Mode controls Vlad Karpovich
2023-08-28 19:39   ` Mark Brown
2023-08-30 15:55     ` Vlad Karpovich
2023-08-28 17:05 ` [PATCH 5/7] ASoC: cs35l45: Rename DACPCM1 Source control Vlad Karpovich
2023-08-29 10:08   ` Charles Keepax
2023-08-28 17:05 ` [PATCH 6/7] ASoC: cs35l45: Connect DSP to the monitoring signals Vlad Karpovich
2023-08-29 10:11   ` Charles Keepax
2023-08-28 17:05 ` [PATCH 7/7] ASoC: cs35l45: Add AMP Enable Switch control Vlad Karpovich
2023-08-29 10:13   ` Charles Keepax
2023-08-29 10:04 ` [PATCH 1/7] ASoC: cs35l45: Add support for Chip ID 0x35A460 Charles Keepax
2023-08-29 19:12 ` (subset) " Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230829131723.f0df743f3ce9293878422cc3@opensource.cirrus.com \
    --to=vkarpovi@opensource.cirrus.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=ckeepax@opensource.cirrus.com \
    --cc=david.rhodes@cirrus.com \
    --cc=devicetree@vger.kernel.org \
    --cc=james.schulman@cirrus.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=patches@opensource.cirrus.com \
    --cc=perex@perex.cz \
    --cc=rf@opensource.cirrus.com \
    --cc=robh+dt@kernel.org \
    --cc=rriveram@opensource.cirrus.com \
    --cc=tiwai@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).