wcd938x.h 515 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _WCD938X_H
  6. #define _WCD938X_H
  7. #ifdef CONFIG_SND_SOC_WCD938X
  8. extern int wcd938x_info_create_codec_entry(struct snd_info_entry *codec_root,
  9. struct snd_soc_component *component);
  10. #else
  11. extern int wcd938x_info_create_codec_entry(struct snd_info_entry *codec_root,
  12. struct snd_soc_component *component)
  13. {
  14. return 0;
  15. }
  16. #endif /* CONFIG_SND_SOC_WCD938X */
  17. #endif /* _WCD938X_H */