summaryrefslogtreecommitdiffstats
path: root/include/linux/sound.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
commitc7fc24dc4420057f103afe8fc64524ebc25c5d37 (patch)
tree3682407a599b8f9f03fc096298134cafba1c9b2f /include/linux/sound.h
parent1d793fade8b063fde3cf275bf1a5c2d381292cd9 (diff)
o Merge with Linux 2.1.116.
o New Newport console code. o New G364 console code.
Diffstat (limited to 'include/linux/sound.h')
-rw-r--r--include/linux/sound.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/sound.h b/include/linux/sound.h
new file mode 100644
index 000000000..7dabc388c
--- /dev/null
+++ b/include/linux/sound.h
@@ -0,0 +1,13 @@
+/*
+ * Sound core interface functions
+ */
+
+extern int register_sound_special(struct file_operations *, int);
+extern int register_sound_mixer(struct file_operations *fops);
+extern int register_sound_midi(struct file_operations *fops);
+extern int register_sound_dsp(struct file_operations *fops);
+
+extern void unregister_sound_special(int unit);
+extern void unregister_sound_mixer(int unit);
+extern void unregister_sound_midi(int unit);
+extern void unregister_sound_dsp(int unit);