diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-12-10 07:34:30 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-12-11 07:25:51 +0100 |
commit | 1dad75b9823c77aa7e1020f011c72fcc15a90144 (patch) | |
tree | 5e282a6770c8e7614c7cf72865b0c1755979ad1a /sound/pci | |
parent | 3992f78f349f7f1565b43d244177f3975edb9aa1 (diff) | |
download | linux-stable-1dad75b9823c77aa7e1020f011c72fcc15a90144.tar.gz linux-stable-1dad75b9823c77aa7e1020f011c72fcc15a90144.tar.bz2 linux-stable-1dad75b9823c77aa7e1020f011c72fcc15a90144.zip |
ALSA: rme32: 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-32-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/rme32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/rme32.c b/sound/pci/rme32.c index 849eede15f8e..15029b2be233 100644 --- a/sound/pci/rme32.c +++ b/sound/pci/rme32.c @@ -1330,6 +1330,7 @@ static int snd_rme32_create(struct rme32 *rme32) return -EBUSY; } rme32->irq = pci->irq; + rme32->card->sync_irq = rme32->irq; /* read the card's revision number */ pci_read_config_byte(pci, 8, &rme32->rev); |