Lines Matching defs: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;
113 hwdep_release(struct snd_hwdep *hwdep, struct file *file)
115 struct snd_bebob *bebob = hwdep->private_data;
125 hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
128 struct snd_bebob *bebob = hwdep->private_data;
144 hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
147 return hwdep_ioctl(hwdep, file, cmd,
163 struct snd_hwdep *hwdep;
166 err = snd_hwdep_new(bebob->card, "BeBoB", 0, &hwdep);
169 strscpy(hwdep->name, "BeBoB");
170 hwdep->iface = SNDRV_HWDEP_IFACE_FW_BEBOB;
171 hwdep->ops = ops;
172 hwdep->private_data = bebob;
173 hwdep->exclusive = true;