ALSA: ali5451: remove irq enabling in pointer callback
authorDenis Efremov <yefremov.denis@gmail.com>
Mon, 11 Feb 2013 15:49:48 +0000 (19:49 +0400)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 6 Mar 2013 03:23:55 +0000 (03:23 +0000)
commit dacae5a19b4cbe1b5e3a86de23ea74cbe9ec9652 upstream.

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>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
sound/pci/ali5451/ali5451.c

index ef85ac5..be662c9 100644 (file)
@@ -1435,7 +1435,7 @@ static snd_pcm_uframes_t snd_ali_pointer(struct snd_pcm_substream *substream)
 
        spin_lock(&codec->reg_lock);
        if (!pvoice->running) {
-               spin_unlock_irq(&codec->reg_lock);
+               spin_unlock(&codec->reg_lock);
                return 0;
        }
        outb(pvoice->number, ALI_REG(codec, ALI_GC_CIR));