simple_card.h 529 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0
  2. *
  3. * ASoC simple sound card support
  4. *
  5. * Copyright (C) 2012 Renesas Solutions Corp.
  6. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
  7. */
  8. #ifndef __SIMPLE_CARD_H
  9. #define __SIMPLE_CARD_H
  10. #include <sound/soc.h>
  11. #include <sound/simple_card_utils.h>
  12. struct asoc_simple_card_info {
  13. const char *name;
  14. const char *card;
  15. const char *codec;
  16. const char *platform;
  17. unsigned int daifmt;
  18. struct asoc_simple_dai cpu_dai;
  19. struct asoc_simple_dai codec_dai;
  20. };
  21. #endif /* __SIMPLE_CARD_H */