msm-pcm-routing-devdep.h 742 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2014-2015, 2017, 2020 The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _MSM_PCM_ROUTING_DEVDEP_H_
  6. #define _MSM_PCM_ROUTING_DEVDEP_H_
  7. #include <sound/soc.h>
  8. #include "msm-pcm-routing-v2.h"
  9. #if IS_ENABLED(CONFIG_SND_HWDEP) && IS_ENABLED(CONFIG_AUDIO_QGKI)
  10. int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
  11. struct msm_pcm_routing_bdai_data *msm_bedais);
  12. void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm);
  13. #else
  14. static inline int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
  15. struct msm_pcm_routing_bdai_data *msm_bedais)
  16. {
  17. return 0;
  18. }
  19. static inline void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm)
  20. {
  21. }
  22. #endif
  23. #endif