Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / include / linux / sound.h
blobec85b7a1f8d1546bdc574a1c4eac9a0dc400d1ea
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SOUND_H
3 #define _LINUX_SOUND_H
5 #include <uapi/linux/sound.h>
7 /*
8 * Sound core interface functions
9 */
11 struct device;
12 extern int register_sound_special(const struct file_operations *fops, int unit);
13 extern int register_sound_special_device(const struct file_operations *fops, int unit, struct device *dev);
14 extern int register_sound_mixer(const struct file_operations *fops, int dev);
15 extern int register_sound_dsp(const struct file_operations *fops, int dev);
17 extern void unregister_sound_special(int unit);
18 extern void unregister_sound_mixer(int unit);
19 extern void unregister_sound_dsp(int unit);
20 #endif /* _LINUX_SOUND_H */