diff options
-rw-r--r-- | core.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -219,8 +219,9 @@ int snd_avirt_stream_try_complete(struct snd_avirt_stream *stream) /* Set PCM ops for the Audio Path*/ PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, pointer); PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, get_time_info); - PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, silence); - PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, copy); + PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, fill_silence); + PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, copy_user); + PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, copy_kernel); PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, mmap); PCM_OPS_SET(pcm_ops_ap, &stream->pcm_ops, ack); |