aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2013-02-07 11:28:48 +0300
committerTakashi Iwai <tiwai@suse.de>2013-02-07 09:52:15 +0100
commitb57a895fa2188d4e1cefa030d0fc9d126e453a95 (patch)
treefb935fc0a4b59713470cab53ea99b4919b989e24 /sound/pci
parentALSA: hda - Apply mic-mute LED fixup for new HP laptops (diff)
downloadlinux-dev-b57a895fa2188d4e1cefa030d0fc9d126e453a95.tar.xz
linux-dev-b57a895fa2188d4e1cefa030d0fc9d126e453a95.zip
ALSA: ice1712: fix boundary check in snd_wm8766_write()
The wm->regs[] array has WM8766_REG_COUNT (16) elements not WM8766_REG_RESET (31). Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/ice1712/wm8766.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/ice1712/wm8766.c b/sound/pci/ice1712/wm8766.c
index 8072adeecf68..e473f8a88f9c 100644
--- a/sound/pci/ice1712/wm8766.c
+++ b/sound/pci/ice1712/wm8766.c
@@ -31,7 +31,7 @@
static void snd_wm8766_write(struct snd_wm8766 *wm, u16 addr, u16 data)
{
- if (addr < WM8766_REG_RESET)
+ if (addr < WM8766_REG_COUNT)
wm->regs[addr] = data;
wm->ops.write(wm, addr, data);
}