Lines Matching refs:hwdep
11 static long hwdep_read(struct snd_hwdep *hwdep, char __user *buf,
14 struct snd_dice *dice = hwdep->private_data;
54 static __poll_t hwdep_poll(struct snd_hwdep *hwdep, struct file *file,
57 struct snd_dice *dice = hwdep->private_data;
127 static int hwdep_release(struct snd_hwdep *hwdep, struct file *file)
129 struct snd_dice *dice = hwdep->private_data;
139 static int hwdep_ioctl(struct snd_hwdep *hwdep, struct file *file,
142 struct snd_dice *dice = hwdep->private_data;
157 static int hwdep_compat_ioctl(struct snd_hwdep *hwdep, struct file *file,
160 return hwdep_ioctl(hwdep, file, cmd,
176 struct snd_hwdep *hwdep;
179 err = snd_hwdep_new(dice->card, "DICE", 0, &hwdep);
182 strcpy(hwdep->name, "DICE");
183 hwdep->iface = SNDRV_HWDEP_IFACE_FW_DICE;
184 hwdep->ops = ops;
185 hwdep->private_data = dice;
186 hwdep->exclusive = true;