Lines Matching refs:hwdep
19 hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count,
22 struct snd_bebob *bebob = hwdep->private_data;
55 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait)
57 struct snd_bebob *bebob = hwdep->private_data;
131 hwdep_release(struct snd_hwdep *hwdep, struct file *file)
133 struct snd_bebob *bebob = hwdep->private_data;
144 hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
147 struct snd_bebob *bebob = hwdep->private_data;
163 hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
166 return hwdep_ioctl(hwdep, file, cmd,
182 struct snd_hwdep *hwdep;
185 err = snd_hwdep_new(bebob->card, "BeBoB", 0, &hwdep);
188 strcpy(hwdep->name, "BeBoB");
189 hwdep->iface = SNDRV_HWDEP_IFACE_FW_BEBOB;
190 hwdep->ops = ops;
191 hwdep->private_data = bebob;
192 hwdep->exclusive = true;