q6common.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #include <dsp/q6common.h>
  13. struct q6common_ctl {
  14. bool instance_id_supported;
  15. };
  16. static struct q6common_ctl common;
  17. /**
  18. * q6common_update_instance_id_support
  19. *
  20. * Update instance ID support flag to true/false
  21. *
  22. * @supported: enable/disable for instance ID support
  23. */
  24. void q6common_update_instance_id_support(bool supported)
  25. {
  26. common.instance_id_supported = supported;
  27. }
  28. EXPORT_SYMBOL(q6common_update_instance_id_support);
  29. /**
  30. * q6common_is_instance_id_supported
  31. *
  32. * Returns true/false for instance ID support
  33. */
  34. bool q6common_is_instance_id_supported(void)
  35. {
  36. return common.instance_id_supported;
  37. }
  38. EXPORT_SYMBOL(q6common_is_instance_id_supported);