Skip to content

Commit dacae5a

Browse files
evdenistiwai
authored andcommitted
ALSA: ali5451: remove irq enabling in pointer callback
snd_ali_pointer function is called with local interrupts disabled. However it seems very strange to reenable them in such way. Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Denis Efremov <yefremov.denis@gmail.com> Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent f49a59c commit dacae5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/pci/ali5451/ali5451.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ static snd_pcm_uframes_t snd_ali_pointer(struct snd_pcm_substream *substream)
14351435

14361436
spin_lock(&codec->reg_lock);
14371437
if (!pvoice->running) {
1438-
spin_unlock_irq(&codec->reg_lock);
1438+
spin_unlock(&codec->reg_lock);
14391439
return 0;
14401440
}
14411441
outb(pvoice->number, ALI_REG(codec, ALI_GC_CIR));

0 commit comments

Comments
 (0)