diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2007-07-30 02:14:31 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2007-10-16 09:58:13 -0400 |
commit | 29998d24ab5ec488cd127488246cc749b0ac52d6 (patch) | |
tree | bef33b79ed8c45f88c73871694418f563deaa10b /sound/pci/ca0106/ca0106_main.c | |
parent | 82467611ffc41fba534c95f8b4ae3887a90f5a66 (diff) |
[ALSA] check for linked substreams of different cards
It is possible to have linked substreams that belong to different cards
and/or different drivers. This patch changes some drivers to make sure
that they do not incorrectly try to handle substreams of a different
card.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/ca0106/ca0106_main.c')
-rw-r--r-- | sound/pci/ca0106/ca0106_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 611fc15a0545..c7f79be98d04 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c | |||
@@ -853,6 +853,9 @@ static int snd_ca0106_pcm_trigger_playback(struct snd_pcm_substream *substream, | |||
853 | break; | 853 | break; |
854 | } | 854 | } |
855 | snd_pcm_group_for_each_entry(s, substream) { | 855 | snd_pcm_group_for_each_entry(s, substream) { |
856 | if (snd_pcm_substream_chip(s) != emu || | ||
857 | s->stream != SNDRV_PCM_STREAM_PLAYBACK) | ||
858 | continue; | ||
856 | runtime = s->runtime; | 859 | runtime = s->runtime; |
857 | epcm = runtime->private_data; | 860 | epcm = runtime->private_data; |
858 | channel = epcm->channel_id; | 861 | channel = epcm->channel_id; |