From: Takashi Iwai Date: Tue, 11 Sep 2007 19:28:50 +0000 (+0200) Subject: [ALSA] pcxhr - Fix trigger start with non-linked streams X-Git-Tag: firefly_0821_release~25448^2~74 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=768d8c7df886fc5cc9d6057cc987ef8e52d197b5;p=firefly-linux-kernel-4.4.55.git [ALSA] pcxhr - Fix trigger start with non-linked streams The non-linked streams couldn't be started properly due to missing setting of stream->status. Signed-off-by: Takashi Iwai Signed-off-by: Jaroslav Kysela --- diff --git a/sound/pci/pcxhr/pcxhr.c b/sound/pci/pcxhr/pcxhr.c index cd4613a97bd7..2d618bd7e62b 100644 --- a/sound/pci/pcxhr/pcxhr.c +++ b/sound/pci/pcxhr/pcxhr.c @@ -664,6 +664,7 @@ static int pcxhr_trigger(struct snd_pcm_substream *subs, int cmd) if (pcxhr_update_r_buffer(stream)) return -EINVAL; + stream->status = PCXHR_STREAM_STATUS_SCHEDULE_RUN; if (pcxhr_set_stream_state(stream)) return -EINVAL; stream->status = PCXHR_STREAM_STATUS_RUNNING;