summaryrefslogtreecommitdiffstats
path: root/sys/dev/sound/pcm/channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/sound/pcm/channel.c')
-rw-r--r--sys/dev/sound/pcm/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c
index 8cf2d88..dc843ee 100644
--- a/sys/dev/sound/pcm/channel.c
+++ b/sys/dev/sound/pcm/channel.c
@@ -498,7 +498,7 @@ chn_sync(struct pcm_channel *c, int threshold)
/* called externally, handle locking */
int
-chn_poll(struct pcm_channel *c, int ev, struct proc *p)
+chn_poll(struct pcm_channel *c, int ev, struct thread *td)
{
struct snd_dbuf *bs = c->bufsoft;
int ret;
@@ -510,7 +510,7 @@ chn_poll(struct pcm_channel *c, int ev, struct proc *p)
if (chn_polltrigger(c) && chn_pollreset(c))
ret = ev;
else
- selrecord(p, sndbuf_getsel(bs));
+ selrecord(curthread, sndbuf_getsel(bs));
return ret;
}
OpenPOWER on IntegriCloud