Lines Matching defs:status
21 * snd_soc_jack_report - Report the current status for a jack
24 * @status: a bitmask of enum snd_jack_type values that are currently detected.
34 void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
42 trace_snd_soc_jack_report(jack, mask, status);
48 jack->status &= ~mask;
49 jack->status |= status & mask;
51 trace_snd_soc_jack_notify(jack, status);
54 int enable = pin->mask & jack->status;
68 /* Report before the DAPM sync to help users updating micbias status */
69 blocking_notifier_call_chain(&jack->notifier, jack->status, jack);
74 snd_jack_report(jack->jack, jack->status);
134 * pins array will have their status updated to reflect the current
135 * state of the jack whenever the jack status is updated.
159 /* Update to reflect the last reported status; canned jack
170 * snd_soc_jack_notifier_register - Register a notifier for jack status
175 * Register for notification of the current status of the jack. Note
189 * snd_soc_jack_notifier_unregister - Unregister a notifier for jack status
194 * Stop notifying for status changes.
396 /* Update initial jack status */