wcd937x.h 892 B

123456789101112131415161718192021222324252627
  1. /* Copyright (c) 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. * This program is distributed in the hope that it will be useful,
  7. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. * GNU General Public License for more details.
  10. */
  11. #ifndef _WCD937X_H
  12. #define _WCD937X_H
  13. #ifdef CONFIG_SND_SOC_WCD937X
  14. extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  15. struct snd_soc_codec *codec);
  16. #else
  17. extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  18. struct snd_soc_codec *codec)
  19. {
  20. return 0;
  21. }
  22. #endif /* CONFIG_SND_SOC_WCD937X */
  23. #endif