aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/asihpi/asihpi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c
index b824df11dd02..0ac1f98d91a1 100644
--- a/sound/pci/asihpi/asihpi.c
+++ b/sound/pci/asihpi/asihpi.c
@@ -625,7 +625,8 @@ static int snd_card_asihpi_trigger(struct snd_pcm_substream *substream,
625 VPRINTK1(KERN_INFO "start\n"); 625 VPRINTK1(KERN_INFO "start\n");
626 /* start the master stream */ 626 /* start the master stream */
627 snd_card_asihpi_pcm_timer_start(substream); 627 snd_card_asihpi_pcm_timer_start(substream);
628 if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) 628 if ((substream->stream == SNDRV_PCM_STREAM_CAPTURE) ||
629 !card->support_mmap)
629 hpi_handle_error(hpi_stream_start(dpcm->h_stream)); 630 hpi_handle_error(hpi_stream_start(dpcm->h_stream));
630 break; 631 break;
631 632