ctljack.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Helper functions for jack-detection kcontrols
  3. *
  4. * Copyright (c) 2011 Takashi Iwai <tiwai@suse.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License as published by the Free
  8. * Software Foundation; either version 2 of the License, or (at your option)
  9. * any later version.
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/export.h>
  13. #include <sound/core.h>
  14. #include <sound/control.h>
  15. #define jack_detect_kctl_info snd_ctl_boolean_mono_info
  16. static int jack_detect_kctl_get(struct snd_kcontrol *kcontrol,
  17. struct snd_ctl_elem_value *ucontrol)
  18. {
  19. ucontrol->value.integer.value[0] = kcontrol->private_value;
  20. return 0;
  21. }
  22. static struct snd_kcontrol_new jack_detect_kctl = {
  23. /* name is filled later */
  24. .iface = SNDRV_CTL_ELEM_IFACE_CARD,
  25. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  26. .info = jack_detect_kctl_info,
  27. .get = jack_detect_kctl_get,
  28. };
  29. struct snd_kcontrol *
  30. snd_kctl_jack_new(const char *name, int idx, void *private_data)
  31. {
  32. struct snd_kcontrol *kctl;
  33. kctl = snd_ctl_new1(&jack_detect_kctl, private_data);
  34. if (!kctl)
  35. return NULL;
  36. snprintf(kctl->id.name, sizeof(kctl->id.name), "%s Jack", name);
  37. kctl->id.index = idx;
  38. kctl->private_value = 0;
  39. return kctl;
  40. }
  41. EXPORT_SYMBOL_GPL(snd_kctl_jack_new);
  42. void snd_kctl_jack_report(struct snd_card *card,
  43. struct snd_kcontrol *kctl, bool status)
  44. {
  45. if (kctl->private_value == status)
  46. return;
  47. kctl->private_value = status;
  48. snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id);
  49. }
  50. EXPORT_SYMBOL_GPL(snd_kctl_jack_report);