mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ALSA: ali5451: remove irq enabling in pointer callback
commit dacae5a19b
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
507d34bf74
commit
7fb3e95821
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue