• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/nouveau/

Lines Matching defs:snd_info_entry

40 struct snd_info_entry;
43 void (*read)(struct snd_info_entry *entry,
45 void (*write)(struct snd_info_entry *entry,
50 int (*open)(struct snd_info_entry *entry,
52 int (*release)(struct snd_info_entry *entry,
54 ssize_t (*read)(struct snd_info_entry *entry, void *file_private_data,
57 ssize_t (*write)(struct snd_info_entry *entry, void *file_private_data,
60 loff_t (*llseek)(struct snd_info_entry *entry,
63 unsigned int (*poll)(struct snd_info_entry *entry,
66 int (*ioctl)(struct snd_info_entry *entry, void *file_private_data,
68 int (*mmap)(struct snd_info_entry *entry, void *file_private_data,
73 struct snd_info_entry {
82 struct snd_info_entry *parent;
86 void (*private_free)(struct snd_info_entry *entry);
104 extern struct snd_info_entry *snd_seq_root;
106 extern struct snd_info_entry *snd_oss_root;
120 struct snd_info_entry *snd_info_create_module_entry(struct module *module,
122 struct snd_info_entry *parent);
123 struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
125 struct snd_info_entry *parent);
126 void snd_info_free_entry(struct snd_info_entry *entry);
127 int snd_info_store_text(struct snd_info_entry *entry);
128 int snd_info_restore_text(struct snd_info_entry *entry);
135 int snd_info_register(struct snd_info_entry *entry);
139 struct snd_info_entry **entryp);
141 static inline void snd_info_set_text_ops(struct snd_info_entry *entry,
143 void (*read)(struct snd_info_entry *, struct snd_info_buffer *))
162 static inline struct snd_info_entry *snd_info_create_module_entry(struct module *module, const char *name, struct snd_info_entry *parent) { return NULL; }
163 static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, const char *name, struct snd_info_entry *parent) { return NULL; }
164 static inline void snd_info_free_entry(struct snd_info_entry *entry) { ; }
171 static inline int snd_info_register(struct snd_info_entry *entry) { return 0; }
174 struct snd_info_entry **entryp) { return -EINVAL; }
175 static inline void snd_info_set_text_ops(struct snd_info_entry *entry __attribute__((unused)),
177 void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) {}