Commit 2dee54b2 authored by Colin Ian King's avatar Colin Ian King Committed by Takashi Iwai

ALSA: drivers: opl3: Fix incorrect use of vp->state

Static analysis with scan-build has found an assignment to vp2 that is
never used. It seems that the check on vp->state > 0 should be actually
on vp2->state instead. Fix this.

This dates back to 2002, I found the offending commit from the git
history git://git.kernel.org/pub/scm/linux/kernel/git/tglx/history.git,
commit 91e39521 ("[PATCH] ALSA patch for 2.5.4")
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Cc: <stable@vger.kernel.org>
Link: https://lore.kernel.org/r/20211212172025.470367-1-colin.i.king@gmail.comSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d7f32791
...@@ -397,7 +397,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) ...@@ -397,7 +397,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
} }
if (instr_4op) { if (instr_4op) {
vp2 = &opl3->voices[voice + 3]; vp2 = &opl3->voices[voice + 3];
if (vp->state > 0) { if (vp2->state > 0) {
opl3_reg = reg_side | (OPL3_REG_KEYON_BLOCK + opl3_reg = reg_side | (OPL3_REG_KEYON_BLOCK +
voice_offset + 3); voice_offset + 3);
reg_val = vp->keyon_reg & ~OPL3_KEYON_BIT; reg_val = vp->keyon_reg & ~OPL3_KEYON_BIT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment