wcd938x.h 723 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _WCD938X_H
  6. #define _WCD938X_H
  7. enum {
  8. WCD9380 = 0,
  9. WCD9385 = 5,
  10. };
  11. #ifdef CONFIG_SND_SOC_WCD938X
  12. extern int wcd938x_info_create_codec_entry(struct snd_info_entry *codec_root,
  13. struct snd_soc_component *component);
  14. extern int wcd938x_get_codec_variant(struct snd_soc_component *component);
  15. #else
  16. extern int wcd938x_info_create_codec_entry(struct snd_info_entry *codec_root,
  17. struct snd_soc_component *component)
  18. {
  19. return 0;
  20. }
  21. extern int wcd938x_get_codec_variant(struct snd_soc_component *component)
  22. {
  23. return 0;
  24. }
  25. #endif /* CONFIG_SND_SOC_WCD938X */
  26. #endif /* _WCD938X_H */