Commit 4a9ff148 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: trident: Support PCM sync_stop

The driver invokes snd_pcm_period_elapsed() simply from the interrupt
handler.  Set card->sync_irq for enabling the missing sync_stop PCM
operation.

Link: https://lore.kernel.org/r/20191210063454.31603-37-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 93042ac2
...@@ -3543,6 +3543,7 @@ int snd_trident_create(struct snd_card *card, ...@@ -3543,6 +3543,7 @@ int snd_trident_create(struct snd_card *card,
return -EBUSY; return -EBUSY;
} }
trident->irq = pci->irq; trident->irq = pci->irq;
card->sync_irq = trident->irq;
/* allocate 16k-aligned TLB for NX cards */ /* allocate 16k-aligned TLB for NX cards */
trident->tlb.entries = NULL; trident->tlb.entries = NULL;
......
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