Lines Matching refs:lops
208 struct snd_ctl_layer_ops *lops;
214 for (lops = snd_ctl_layer; lops; lops = lops->next)
215 lops->lnotify(card, mask, kctl, ioff);
2295 struct snd_ctl_layer_ops *lops;
2300 for (lops = snd_ctl_layer; lops; lops = lops->next)
2301 if (strcmp(lops->module_name, module_name) == 0)
2304 if (lops)
2312 * @lops: operation structure
2317 void snd_ctl_register_layer(struct snd_ctl_layer_ops *lops)
2323 lops->next = snd_ctl_layer;
2324 snd_ctl_layer = lops;
2330 lops->lregister(card);
2340 * @lops: operation structure
2346 void snd_ctl_disconnect_layer(struct snd_ctl_layer_ops *lops)
2352 if (lops2 == lops) {
2354 snd_ctl_layer = lops->next;
2356 prev_lops2->next = lops->next;
2388 struct snd_ctl_layer_ops *lops;
2397 for (lops = snd_ctl_layer; lops; lops = lops->next)
2398 lops->lregister(card);
2411 struct snd_ctl_layer_ops *lops;
2423 for (lops = snd_ctl_layer; lops; lops = lops->next)
2424 lops->ldisconnect(card);