diff options
Diffstat (limited to 'sys/dev/sound/pcm/dsp.h')
-rw-r--r-- | sys/dev/sound/pcm/dsp.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/dev/sound/pcm/dsp.h b/sys/dev/sound/pcm/dsp.h index 8fa1a9e..39e8ea5 100644 --- a/sys/dev/sound/pcm/dsp.h +++ b/sys/dev/sound/pcm/dsp.h @@ -26,12 +26,7 @@ * $FreeBSD$ */ -int dsp_open(struct snddev_info *d, int chan, int oflags, int devtype, pid_t pid); -int dsp_close(struct snddev_info *d, int chan, int devtype); -int dsp_read(struct snddev_info *d, int chan, struct uio *buf, int flag); -int dsp_write(struct snddev_info *d, int chan, struct uio *buf, int flag); -int dsp_ioctl(struct snddev_info *d, int chan, u_long cmd, caddr_t arg); -int dsp_poll(struct snddev_info *d, int chan, int events, struct proc *p); -int dsp_mmap(struct snddev_info *d, int chan, vm_offset_t offset, int nprot); +int dsp_register(int unit, int channel); +int dsp_unregister(int unit, int channel); |