Lines Matching refs:entry
30 snd_emux_proc_info_read(struct snd_info_entry *entry, in snd_emux_proc_info_read() argument
36 emu = entry->private_data; in snd_emux_proc_info_read()
109 struct snd_info_entry *entry; in snd_emux_proc_init() local
113 entry = snd_info_create_card_entry(card, name, card->proc_root); in snd_emux_proc_init()
114 if (entry == NULL) in snd_emux_proc_init()
117 entry->content = SNDRV_INFO_CONTENT_TEXT; in snd_emux_proc_init()
118 entry->private_data = emu; in snd_emux_proc_init()
119 entry->c.text.read = snd_emux_proc_info_read; in snd_emux_proc_init()
120 if (snd_info_register(entry) < 0) in snd_emux_proc_init()
121 snd_info_free_entry(entry); in snd_emux_proc_init()
123 emu->proc = entry; in snd_emux_proc_init()