mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-23 04:54:01 +08:00
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>
This commit is contained in:
parent
cde944803d
commit
47a74a5d1e
@ -888,8 +888,8 @@ static void snd_card_asihpi_timer_function(unsigned long data)
|
||||
pd, xfer2));
|
||||
}
|
||||
}
|
||||
ds->pcm_buf_host_rw_ofs = ds->pcm_buf_host_rw_ofs + xfercount;
|
||||
ds->pcm_buf_elapsed_dma_ofs = pcm_buf_dma_ofs;
|
||||
ds->pcm_buf_host_rw_ofs += xfercount;
|
||||
ds->pcm_buf_elapsed_dma_ofs += xfercount;
|
||||
snd_pcm_period_elapsed(s);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user