Lines Matching refs:root
196 add_node(struct snd_efw *efw, struct snd_info_entry *root, const char *name, in add_node() argument
201 entry = snd_info_create_card_entry(efw->card, name, root); in add_node()
212 struct snd_info_entry *root; in snd_efw_proc_init() local
218 root = snd_info_create_card_entry(efw->card, "firewire", in snd_efw_proc_init()
220 if (root == NULL) in snd_efw_proc_init()
222 root->mode = S_IFDIR | S_IRUGO | S_IXUGO; in snd_efw_proc_init()
223 if (snd_info_register(root) < 0) { in snd_efw_proc_init()
224 snd_info_free_entry(root); in snd_efw_proc_init()
228 add_node(efw, root, "clock", proc_read_clock); in snd_efw_proc_init()
229 add_node(efw, root, "firmware", proc_read_hwinfo); in snd_efw_proc_init()
230 add_node(efw, root, "meters", proc_read_phys_meters); in snd_efw_proc_init()
231 add_node(efw, root, "queues", proc_read_queues_state); in snd_efw_proc_init()