Merge tag 'v3.10.58' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / sound / simple_card.h
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
12 #ifndef __SIMPLE_CARD_H
13 #define __SIMPLE_CARD_H
14
15 #include <sound/soc.h>
16
17 struct asoc_simple_dai {
18 const char *name;
19 unsigned int fmt;
20 unsigned int sysclk;
21 };
22
23 struct asoc_simple_card_info {
24 const char *name;
25 const char *card;
26 const char *codec;
27 const char *platform;
28
29 unsigned int daifmt;
30 struct asoc_simple_dai cpu_dai;
31 struct asoc_simple_dai codec_dai;
32
33 /* used in simple-card.c */
34 struct snd_soc_dai_link snd_link;
35 struct snd_soc_card snd_card;
36 };
37
38 #endif /* __SIMPLE_CARD_H */