msm-pcm-routing-devdep.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (c) 2014-2015, 2017 The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _MSM_PCM_ROUTING_DEVDEP_H_
  14. #define _MSM_PCM_ROUTING_DEVDEP_H_
  15. #include <sound/soc.h>
  16. #include "msm-pcm-routing-v2.h"
  17. #ifdef CONFIG_SND_HWDEP
  18. int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
  19. struct msm_pcm_routing_bdai_data *msm_bedais);
  20. void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm);
  21. #else
  22. static inline int msm_pcm_routing_hwdep_new(struct snd_soc_pcm_runtime *runtime,
  23. struct msm_pcm_routing_bdai_data *msm_bedais)
  24. {
  25. return 0;
  26. }
  27. static inline void msm_pcm_routing_hwdep_free(struct snd_pcm *pcm)
  28. {
  29. }
  30. #endif
  31. #endif