From: Dan Carpenter <dan.carpenter@oracle.com>
To: yesanishhere@gmail.com
Cc: alsa-devel@alsa-project.org
Subject: Re: ASoC: Add max98925 codec driver
Date: Tue, 17 Mar 2015 21:28:43 +0300 [thread overview]
Message-ID: <20150317182843.GA30354@mwanda> (raw)
Hello Anish Kumar,
The patch 1ff2765182d1: "ASoC: Add max98925 codec driver" from Mar 9,
2015, leads to the following static checker warning:
sound/soc/codecs/max98925.c:274 max98925_rate_value()
error: buffer overflow 'rate_table' 9 <= 9
sound/soc/codecs/max98925.c
259 static inline int max98925_rate_value(struct snd_soc_codec *codec,
260 int rate, int clock, int *value, int *n, int *m)
261 {
262 int ret = -EINVAL;
263 int i;
264
265 for (i = 0; i < ARRAY_SIZE(rate_table); i++) {
266 if (rate_table[i].rate >= rate) {
267 *value = rate_table[i].sr;
268 *n = rate_table[i].divisors[clock][0];
269 *m = rate_table[i].divisors[clock][1];
270 ret = 0;
271 break;
272 }
273 }
274 dev_dbg(codec->dev, "%s: sample rate is %d, returning %d\n",
275 __func__, rate_table[i].rate, *value);
^^^^^^^^^^^^^^^^^^
If we don't break then we're off by one.
276 return ret;
277 }
regards,
dan carpenter
next reply other threads:[~2015-03-17 18:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-17 18:28 Dan Carpenter [this message]
2015-07-20 11:07 ` ASoC: Add max98925 codec driver Dan Carpenter
2015-07-20 15:59 ` anish kumar
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=20150317182843.GA30354@mwanda \
--to=dan.carpenter@oracle.com \
--cc=alsa-devel@alsa-project.org \
--cc=yesanishhere@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.