aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core.c b/core.c
index c03bf1c..3ce669f 100644
--- a/core.c
+++ b/core.c
@@ -330,9 +330,9 @@ snd_avirt_route_endpoint_copy(struct snd_pcm_substream *substream,
switch (endpoint) {
case SND_AVIRT_ROUTE_SOURCE:
- return endpoint_ap->pcm_capture_ops->copy_kernel;
+ return endpoint_ap->pcm_capture_ops->copy;
case SND_AVIRT_ROUTE_SINK:
- return endpoint_ap->pcm_playback_ops->copy_kernel;
+ return endpoint_ap->pcm_playback_ops->copy;
}
return NULL;