Lines Matching refs:hwdep
20 hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count, in hwdep_read() argument
23 struct snd_bebob *bebob = hwdep->private_data; in hwdep_read()
57 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait) in hwdep_poll() argument
59 struct snd_bebob *bebob = hwdep->private_data; in hwdep_poll()
133 hwdep_release(struct snd_hwdep *hwdep, struct file *file) in hwdep_release() argument
135 struct snd_bebob *bebob = hwdep->private_data; in hwdep_release()
146 hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file, in hwdep_ioctl() argument
149 struct snd_bebob *bebob = hwdep->private_data; in hwdep_ioctl()
165 hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file, in hwdep_compat_ioctl() argument
168 return hwdep_ioctl(hwdep, file, cmd, in hwdep_compat_ioctl()
184 struct snd_hwdep *hwdep; in snd_bebob_create_hwdep_device() local
187 err = snd_hwdep_new(bebob->card, "BeBoB", 0, &hwdep); in snd_bebob_create_hwdep_device()
190 strcpy(hwdep->name, "BeBoB"); in snd_bebob_create_hwdep_device()
191 hwdep->iface = SNDRV_HWDEP_IFACE_FW_BEBOB; in snd_bebob_create_hwdep_device()
192 hwdep->ops = ops; in snd_bebob_create_hwdep_device()
193 hwdep->private_data = bebob; in snd_bebob_create_hwdep_device()
194 hwdep->exclusive = true; in snd_bebob_create_hwdep_device()