Lines Matching refs:fops
174 …t sound_unit * s, struct sound_unit **list, const struct file_operations *fops, int index, int low… in __sound_insert_unit() argument
210 s->unit_fops=fops; in __sound_insert_unit()
254 static int sound_insert_unit(struct sound_unit **list, const struct file_operations *fops, int inde… in sound_insert_unit() argument
264 r = __sound_insert_unit(s, list, fops, index, low, top); in sound_insert_unit()
361 int register_sound_special_device(const struct file_operations *fops, int unit, in register_sound_special_device() argument
422 return sound_insert_unit(&chains[chain], fops, -1, unit, max_unit, in register_sound_special_device()
428 int register_sound_special(const struct file_operations *fops, int unit) in register_sound_special() argument
430 return register_sound_special_device(fops, unit, NULL); in register_sound_special()
447 int register_sound_mixer(const struct file_operations *fops, int dev) in register_sound_mixer() argument
449 return sound_insert_unit(&chains[0], fops, dev, 0, 128, in register_sound_mixer()
467 int register_sound_midi(const struct file_operations *fops, int dev) in register_sound_midi() argument
469 return sound_insert_unit(&chains[2], fops, dev, 2, 130, in register_sound_midi()
495 int register_sound_dsp(const struct file_operations *fops, int dev) in register_sound_dsp() argument
497 return sound_insert_unit(&chains[3], fops, dev, 3, 131, in register_sound_dsp()