diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-12-10 07:34:32 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-12-11 07:25:52 +0100 |
commit | 39cccf4511fd00c591c989edb47c8ed51aba0282 (patch) | |
tree | 4c32abe3ff1c893734549c9073392ae3ced01f93 /sound/pci/rme9652/hdspm.c | |
parent | ALSA: rme96: Support PCM sync_stop (diff) | |
download | linux-39cccf4511fd00c591c989edb47c8ed51aba0282.tar.xz linux-39cccf4511fd00c591c989edb47c8ed51aba0282.zip |
ALSA: rme9652: 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-34-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/rme9652/hdspm.c')
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index 75c06a7cc779..56ae14c90a2c 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c @@ -6613,6 +6613,7 @@ static int snd_hdspm_create(struct snd_card *card, dev_dbg(card->dev, "use IRQ %d\n", pci->irq); hdspm->irq = pci->irq; + card->sync_irq = hdspm->irq; dev_dbg(card->dev, "kmalloc Mixer memory of %zd Bytes\n", sizeof(*hdspm->mixer)); |