Lines Matching refs:hwdep
122 hwdep_read(struct snd_hwdep *hwdep, char __user *buf, long count, in hwdep_read() argument
125 struct snd_efw *efw = hwdep->private_data; in hwdep_read()
158 hwdep_write(struct snd_hwdep *hwdep, const char __user *data, long count, in hwdep_write() argument
161 struct snd_efw *efw = hwdep->private_data; in hwdep_write()
188 hwdep_poll(struct snd_hwdep *hwdep, struct file *file, poll_table *wait) in hwdep_poll() argument
190 struct snd_efw *efw = hwdep->private_data; in hwdep_poll()
264 hwdep_release(struct snd_hwdep *hwdep, struct file *file) in hwdep_release() argument
266 struct snd_efw *efw = hwdep->private_data; in hwdep_release()
277 hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file, in hwdep_ioctl() argument
280 struct snd_efw *efw = hwdep->private_data; in hwdep_ioctl()
296 hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file, in hwdep_compat_ioctl() argument
299 return hwdep_ioctl(hwdep, file, cmd, in hwdep_compat_ioctl()
316 struct snd_hwdep *hwdep; in snd_efw_create_hwdep_device() local
319 err = snd_hwdep_new(efw->card, "Fireworks", 0, &hwdep); in snd_efw_create_hwdep_device()
322 strcpy(hwdep->name, "Fireworks"); in snd_efw_create_hwdep_device()
323 hwdep->iface = SNDRV_HWDEP_IFACE_FW_FIREWORKS; in snd_efw_create_hwdep_device()
324 hwdep->ops = ops; in snd_efw_create_hwdep_device()
325 hwdep->private_data = efw; in snd_efw_create_hwdep_device()
326 hwdep->exclusive = true; in snd_efw_create_hwdep_device()