diff options
author | Eliot Blennerhassett <eblennerhassett@audioscience.com> | 2011-12-21 17:54:02 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-22 02:12:52 -0500 |
commit | 47a74a5d1ed2af23c2dc1ccfdcc0176e40404345 (patch) | |
tree | 16e62092d478593172be232108734343546ba2c0 | |
parent | cde944803d12450f70f0adc4d418afcd8e42db2e (diff) |
ALSA: asihpi - fix pcm dma pointer tracking
Elapsed counter should only count data committed to snd_pcm_period_elapsed,
rather than all data available
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/asihpi/asihpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index e9de799abd38..1ba50e369296 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c | |||
@@ -888,8 +888,8 @@ static void snd_card_asihpi_timer_function(unsigned long data) | |||
888 | pd, xfer2)); | 888 | pd, xfer2)); |
889 | } | 889 | } |
890 | } | 890 | } |
891 | ds->pcm_buf_host_rw_ofs = ds->pcm_buf_host_rw_ofs + xfercount; | 891 | ds->pcm_buf_host_rw_ofs += xfercount; |
892 | ds->pcm_buf_elapsed_dma_ofs = pcm_buf_dma_ofs; | 892 | ds->pcm_buf_elapsed_dma_ofs += xfercount; |
893 | snd_pcm_period_elapsed(s); | 893 | snd_pcm_period_elapsed(s); |
894 | } | 894 | } |
895 | } | 895 | } |