Lines Matching refs:entry
28 snd_emux_proc_info_read(struct snd_info_entry *entry, in snd_emux_proc_info_read() argument
34 emu = entry->private_data; in snd_emux_proc_info_read()
107 struct snd_info_entry *entry; in snd_emux_proc_init() local
111 entry = snd_info_create_card_entry(card, name, card->proc_root); in snd_emux_proc_init()
112 if (entry == NULL) in snd_emux_proc_init()
115 entry->content = SNDRV_INFO_CONTENT_TEXT; in snd_emux_proc_init()
116 entry->private_data = emu; in snd_emux_proc_init()
117 entry->c.text.read = snd_emux_proc_info_read; in snd_emux_proc_init()
118 if (snd_info_register(entry) < 0) in snd_emux_proc_init()
119 snd_info_free_entry(entry); in snd_emux_proc_init()
121 emu->proc = entry; in snd_emux_proc_init()