summaryrefslogtreecommitdiffstats
path: root/include/linux/sound.h
blob: bc9335801e9b7a80626c32b4e3e0ccf1a3b2f166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *	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 int register_sound_synth(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);
extern void unregister_sound_synth(int unit);