From: Dan Carpenter on
Smatch complained about BUG_ON(reg > WM8994_MAX_REGISTER) because the
actual number of elements in the array was WM8994_REG_CACHE_SIZE + 1.

I changed the BUG_ON() to return -EINVAL.

I was confused why WM8994_REG_CACHE_SIZE was different from the actual
size of ->reg_cache and I was concerned because some places used
ARRAY_SIZE() to find the end of the array and other places used
WM8994_REG_CACHE_SIZE. In my patch, I made them the same.

I don't have the hardware to test this and some of this patch is just
guess work.

For example, I left it in, but why is there a -1 here?
3711 /* Fill the cache with physical values we inherited; don't reset */
3712 ret = wm8994_bulk_read(codec->control_data, 0,
3713 ARRAY_SIZE(wm8994->reg_cache) - 1,
3714 codec->reg_cache);

I didn't sign this off because I figured I'd probably need to send a
second version after I hear the feed back.

regards,
dan carpenter

diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c
index 29f3771..d9c179a 100644
--- a/sound/soc/codecs/wm8994.c
+++ b/sound/soc/codecs/wm8994.c
@@ -59,13 +59,13 @@ static int wm8994_retune_mobile_base[] = {
WM8994_AIF2_EQ_GAINS_1,
};

-#define WM8994_REG_CACHE_SIZE 0x621
+#define WM8994_REG_CACHE_SIZE 0x622

/* codec private data */
struct wm8994_priv {
struct wm_hubs_data hubs;
struct snd_soc_codec codec;
- u16 reg_cache[WM8994_REG_CACHE_SIZE + 1];
+ u16 reg_cache[WM8994_REG_CACHE_SIZE];
int sysclk[2];
int sysclk_rate[2];
int mclk[2];
@@ -1697,7 +1697,8 @@ static int wm8994_write(struct snd_soc_codec *codec, unsigned int reg,
{
struct wm8994_priv *wm8994 = codec->private_data;

- BUG_ON(reg > WM8994_MAX_REGISTER);
+ if (reg >= WM8994_REG_CACHE_SIZE)
+ return -EINVAL;

if (!wm8994_volatile(reg))
wm8994->reg_cache[reg] = value;
@@ -1710,7 +1711,8 @@ static unsigned int wm8994_read(struct snd_soc_codec *codec,
{
u16 *reg_cache = codec->reg_cache;

- BUG_ON(reg > WM8994_MAX_REGISTER);
+ if (reg >= WM8994_REG_CACHE_SIZE)
+ return -EINVAL;

if (wm8994_volatile(reg))
return wm8994_reg_read(codec->control_data, reg);
@@ -3700,7 +3702,7 @@ static int wm8994_codec_probe(struct platform_device *pdev)
codec->set_bias_level = wm8994_set_bias_level;
codec->dai = &wm8994_dai[0];
codec->num_dai = 3;
- codec->reg_cache_size = WM8994_MAX_REGISTER;
+ codec->reg_cache_size = WM8994_REG_CACHE_SIZE;
codec->reg_cache = &wm8994->reg_cache;
codec->dev = &pdev->dev;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo(a)vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/