Lines Matching defs:private
676 struct qtet_kcontrol_private private =
678 return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(private.texts),
679 private.texts);
685 struct qtet_kcontrol_private private =
689 (private.get_register(ice) & private.bit) ? 1 : 0;
696 struct qtet_kcontrol_private private =
700 old = private.get_register(ice);
702 new = old | private.bit;
704 new = old & ~private.bit;
706 private.set_register(ice, new);