• Home
  • Raw
  • Download

Lines Matching refs:entry

328 static void snd_ac97_proc_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)  in snd_ac97_proc_read()  argument
330 struct snd_ac97 *ac97 = entry->private_data; in snd_ac97_proc_read()
363 static void snd_ac97_proc_regs_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer) in snd_ac97_proc_regs_write() argument
365 struct snd_ac97 *ac97 = entry->private_data; in snd_ac97_proc_regs_write()
390 static void snd_ac97_proc_regs_read(struct snd_info_entry *entry, in snd_ac97_proc_regs_read() argument
393 struct snd_ac97 *ac97 = entry->private_data; in snd_ac97_proc_regs_read()
416 struct snd_info_entry *entry; in snd_ac97_proc_init() local
424 entry = snd_info_create_card_entry(ac97->bus->card, name, in snd_ac97_proc_init()
426 if (entry) in snd_ac97_proc_init()
427 snd_info_set_text_ops(entry, ac97, snd_ac97_proc_read); in snd_ac97_proc_init()
428 ac97->proc = entry; in snd_ac97_proc_init()
430 entry = snd_info_create_card_entry(ac97->bus->card, name, in snd_ac97_proc_init()
432 if (entry) { in snd_ac97_proc_init()
433 snd_info_set_text_ops(entry, ac97, snd_ac97_proc_regs_read); in snd_ac97_proc_init()
435 entry->mode |= 0200; in snd_ac97_proc_init()
436 entry->c.text.write = snd_ac97_proc_regs_write; in snd_ac97_proc_init()
439 ac97->proc_regs = entry; in snd_ac97_proc_init()
452 struct snd_info_entry *entry; in snd_ac97_bus_proc_init() local
456 entry = snd_info_create_card_entry(bus->card, name, in snd_ac97_bus_proc_init()
458 if (entry) in snd_ac97_bus_proc_init()
459 entry->mode = S_IFDIR | 0555; in snd_ac97_bus_proc_init()
460 bus->proc = entry; in snd_ac97_bus_proc_init()