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