Page MenuHomeFreeBSD

D45016.diff
No OneTemporary

D45016.diff

diff --git a/sys/dev/sound/pcm/vchan.c b/sys/dev/sound/pcm/vchan.c
--- a/sys/dev/sound/pcm/vchan.c
+++ b/sys/dev/sound/pcm/vchan.c
@@ -251,7 +251,7 @@
CHANNEL_DECLARE(vchan);
static void
-pcm_getparentchannel(struct snddev_info *d,
+vchan_getparentchannel(struct snddev_info *d,
struct pcm_channel **wrch, struct pcm_channel **rdch)
{
struct pcm_channel **ch, *wch, *rch, *c;
@@ -380,9 +380,9 @@
PCM_UNLOCK(d);
if (direction == PCMDIR_PLAY)
- pcm_getparentchannel(d, &c, NULL);
+ vchan_getparentchannel(d, &c, NULL);
else
- pcm_getparentchannel(d, NULL, &c);
+ vchan_getparentchannel(d, NULL, &c);
if (c == NULL) {
PCM_RELEASE_QUICK(d);
@@ -482,9 +482,9 @@
PCM_UNLOCK(d);
if (direction == PCMDIR_PLAY)
- pcm_getparentchannel(d, &c, NULL);
+ vchan_getparentchannel(d, &c, NULL);
else
- pcm_getparentchannel(d, NULL, &c);
+ vchan_getparentchannel(d, NULL, &c);
if (c == NULL) {
PCM_RELEASE_QUICK(d);
@@ -591,9 +591,9 @@
PCM_UNLOCK(d);
if (direction == PCMDIR_PLAY)
- pcm_getparentchannel(d, &c, NULL);
+ vchan_getparentchannel(d, &c, NULL);
else
- pcm_getparentchannel(d, NULL, &c);
+ vchan_getparentchannel(d, NULL, &c);
if (c == NULL) {
PCM_RELEASE_QUICK(d);

File Metadata

Mime Type
text/plain
Expires
Sat, Feb 8, 6:22 AM (21 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16522883
Default Alt Text
D45016.diff (1 KB)

Event Timeline