blob: 7dabc388ccb14ecb9c00a8192d0fd7e9db866c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
|