blob: d264e5463f22dfd62ac4add4a64f5a747e9d7729 [file] [log] [blame]
Kuninori Morimotod5734542018-07-02 06:30:28 +00001/* SPDX-License-Identifier: GPL-2.0
2 *
Kuninori Morimotof2390882012-04-08 21:17:50 -07003 * ASoC simple sound card support
4 *
5 * Copyright (C) 2012 Renesas Solutions Corp.
6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Kuninori Morimotof2390882012-04-08 21:17:50 -07007 */
8
9#ifndef __SIMPLE_CARD_H
10#define __SIMPLE_CARD_H
11
12#include <sound/soc.h>
Kuninori Morimotocecdef32016-06-30 06:02:46 +000013#include <sound/simple_card_utils.h>
Kuninori Morimotof2390882012-04-08 21:17:50 -070014
15struct asoc_simple_card_info {
16 const char *name;
17 const char *card;
Kuninori Morimotof2390882012-04-08 21:17:50 -070018 const char *codec;
19 const char *platform;
Kuninori Morimotoa4a29922013-01-10 16:49:11 -080020
21 unsigned int daifmt;
22 struct asoc_simple_dai cpu_dai;
23 struct asoc_simple_dai codec_dai;
Kuninori Morimotof2390882012-04-08 21:17:50 -070024};
25
26#endif /* __SIMPLE_CARD_H */