Kuninori Morimoto | d573454 | 2018-07-02 06:30:28 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 |
| 2 | * |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 3 | * ASoC simple sound card support |
| 4 | * |
| 5 | * Copyright (C) 2012 Renesas Solutions Corp. |
| 6 | * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __SIMPLE_CARD_H |
| 10 | #define __SIMPLE_CARD_H |
| 11 | |
| 12 | #include <sound/soc.h> |
Kuninori Morimoto | cecdef3 | 2016-06-30 06:02:46 +0000 | [diff] [blame] | 13 | #include <sound/simple_card_utils.h> |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 14 | |
| 15 | struct asoc_simple_card_info { |
| 16 | const char *name; |
| 17 | const char *card; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 18 | const char *codec; |
| 19 | const char *platform; |
Kuninori Morimoto | a4a2992 | 2013-01-10 16:49:11 -0800 | [diff] [blame] | 20 | |
| 21 | unsigned int daifmt; |
| 22 | struct asoc_simple_dai cpu_dai; |
| 23 | struct asoc_simple_dai codec_dai; |
Kuninori Morimoto | f239088 | 2012-04-08 21:17:50 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | #endif /* __SIMPLE_CARD_H */ |