diff options
author | marcel <marcel@FreeBSD.org> | 2001-11-18 06:36:18 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2001-11-18 06:36:18 +0000 |
commit | 639f68486d733378239cdd9310c6a68428870800 (patch) | |
tree | 37174c0ca6bd7cc621395216085a15ba3edbc129 /sys/compat/linux/linux_ioctl.c | |
parent | 8d3576085afd61cbe58000d872b7e1370ce7f471 (diff) | |
download | FreeBSD-src-639f68486d733378239cdd9310c6a68428870800.zip FreeBSD-src-639f68486d733378239cdd9310c6a68428870800.tar.gz |
Implement missing SOUND_MIXER_WRITE_RECSRC ioctl.
PR: 22971
Tested by: dougb
Diffstat (limited to 'sys/compat/linux/linux_ioctl.c')
-rw-r--r-- | sys/compat/linux/linux_ioctl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c index 4e07abb..4d129fd 100644 --- a/sys/compat/linux/linux_ioctl.c +++ b/sys/compat/linux/linux_ioctl.c @@ -1106,6 +1106,10 @@ linux_ioctl_sound(struct thread *td, struct linux_ioctl_args *args) args->cmd = SOUND_MIXER_READ_DEVMASK; return (ioctl(td, (struct ioctl_args *)args)); + case LINUX_SOUND_MIXER_WRITE_RECSRC: + args->cmd = SETDIR(SOUND_MIXER_WRITE_RECSRC); + return (ioctl(td, (struct ioctl_args *)args)); + case LINUX_SNDCTL_DSP_RESET: args->cmd = SNDCTL_DSP_RESET; return (ioctl(td, (struct ioctl_args *)args)); |