simple_card.h 683 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * ASoC simple sound card support
  3. *
  4. * Copyright (C) 2012 Renesas Solutions Corp.
  5. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __SIMPLE_CARD_H
  12. #define __SIMPLE_CARD_H
  13. #include <sound/soc.h>
  14. #include <sound/simple_card_utils.h>
  15. struct asoc_simple_card_info {
  16. const char *name;
  17. const char *card;
  18. const char *codec;
  19. const char *platform;
  20. unsigned int daifmt;
  21. struct asoc_simple_dai cpu_dai;
  22. struct asoc_simple_dai codec_dai;
  23. };
  24. #endif /* __SIMPLE_CARD_H */