rouleur.h 496 B

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