Lines Matching refs:hwdep
19 hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
22 struct snd_bebob *bebob = hwdep->private_data;
53 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait)
55 struct snd_bebob *bebob = hwdep->private_data;
129 hwdep_release(struct snd_hwdep *hwdep, struct file *file)
131 struct snd_bebob *bebob = hwdep->private_data;
142 hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
145 struct snd_bebob *bebob = hwdep->private_data;
161 hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
164 return hwdep_ioctl(hwdep, file, cmd,
180 struct snd_hwdep *hwdep;
183 err = snd_hwdep_new(bebob->card, "BeBoB", 0, &hwdep);
186 strcpy(hwdep->name, "BeBoB");
187 hwdep->iface = SNDRV_HWDEP_IFACE_FW_BEBOB;
188 hwdep->ops = ops;
189 hwdep->private_data = bebob;
190 hwdep->exclusive = true;