Lines Matching refs:entry
110 static void lola_proc_codec_read(struct snd_info_entry *entry, in lola_proc_codec_read() argument
113 struct lola *chip = entry->private_data; in lola_proc_codec_read()
147 static void lola_proc_codec_rw_write(struct snd_info_entry *entry, in lola_proc_codec_rw_write() argument
150 struct lola *chip = entry->private_data; in lola_proc_codec_rw_write()
162 static void lola_proc_codec_rw_read(struct snd_info_entry *entry, in lola_proc_codec_rw_read() argument
165 struct lola *chip = entry->private_data; in lola_proc_codec_rw_read()
172 static void lola_proc_regs_read(struct snd_info_entry *entry, in lola_proc_regs_read() argument
175 struct lola *chip = entry->private_data; in lola_proc_regs_read()
211 struct snd_info_entry *entry; in lola_proc_debug_new() local
213 if (!snd_card_proc_new(chip->card, "codec", &entry)) in lola_proc_debug_new()
214 snd_info_set_text_ops(entry, chip, lola_proc_codec_read); in lola_proc_debug_new()
215 if (!snd_card_proc_new(chip->card, "codec_rw", &entry)) { in lola_proc_debug_new()
216 snd_info_set_text_ops(entry, chip, lola_proc_codec_rw_read); in lola_proc_debug_new()
217 entry->mode |= S_IWUSR; in lola_proc_debug_new()
218 entry->c.text.write = lola_proc_codec_rw_write; in lola_proc_debug_new()
220 if (!snd_card_proc_new(chip->card, "regs", &entry)) in lola_proc_debug_new()
221 snd_info_set_text_ops(entry, chip, lola_proc_regs_read); in lola_proc_debug_new()