• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/ca0106/

Lines Matching defs:entry

274 static void snd_ca0106_proc_iec958(struct snd_info_entry *entry, 
277 struct snd_ca0106 *emu = entry->private_data;
296 static void snd_ca0106_proc_reg_write32(struct snd_info_entry *entry,
299 struct snd_ca0106 *emu = entry->private_data;
314 static void snd_ca0106_proc_reg_read32(struct snd_info_entry *entry,
317 struct snd_ca0106 *emu = entry->private_data;
330 static void snd_ca0106_proc_reg_read16(struct snd_info_entry *entry,
333 struct snd_ca0106 *emu = entry->private_data;
346 static void snd_ca0106_proc_reg_read8(struct snd_info_entry *entry,
349 struct snd_ca0106 *emu = entry->private_data;
362 static void snd_ca0106_proc_reg_read1(struct snd_info_entry *entry,
365 struct snd_ca0106 *emu = entry->private_data;
380 static void snd_ca0106_proc_reg_read2(struct snd_info_entry *entry,
383 struct snd_ca0106 *emu = entry->private_data;
398 static void snd_ca0106_proc_reg_write(struct snd_info_entry *entry,
401 struct snd_ca0106 *emu = entry->private_data;
412 static void snd_ca0106_proc_i2c_write(struct snd_info_entry *entry,
415 struct snd_ca0106 *emu = entry->private_data;
429 struct snd_info_entry *entry;
431 if(! snd_card_proc_new(emu->card, "iec958", &entry))
432 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_iec958);
433 if(! snd_card_proc_new(emu->card, "ca0106_reg32", &entry)) {
434 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_reg_read32);
435 entry->c.text.write = snd_ca0106_proc_reg_write32;
436 entry->mode |= S_IWUSR;
438 if(! snd_card_proc_new(emu->card, "ca0106_reg16", &entry))
439 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_reg_read16);
440 if(! snd_card_proc_new(emu->card, "ca0106_reg8", &entry))
441 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_reg_read8);
442 if(! snd_card_proc_new(emu->card, "ca0106_regs1", &entry)) {
443 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_reg_read1);
444 entry->c.text.write = snd_ca0106_proc_reg_write;
445 entry->mode |= S_IWUSR;
447 if(! snd_card_proc_new(emu->card, "ca0106_i2c", &entry)) {
448 entry->c.text.write = snd_ca0106_proc_i2c_write;
449 entry->private_data = emu;
450 entry->mode |= S_IWUSR;
452 if(! snd_card_proc_new(emu->card, "ca0106_regs2", &entry))
453 snd_info_set_text_ops(entry, emu, snd_ca0106_proc_reg_read2);