blob: a6a2e1547092a8e232c27bf5a8778b4eaa63a1bb [file] [log] [blame]
Kuninori Morimotof2390882012-04-08 21:17:50 -07001/*
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>
Kuninori Morimotocecdef32016-06-30 06:02:46 +000016#include <sound/simple_card_utils.h>
Kuninori Morimotof2390882012-04-08 21:17:50 -070017
18struct asoc_simple_card_info {
19 const char *name;
20 const char *card;
Kuninori Morimotof2390882012-04-08 21:17:50 -070021 const char *codec;
22 const char *platform;
Kuninori Morimotoa4a2992c2013-01-10 16:49:11 -080023
24 unsigned int daifmt;
25 struct asoc_simple_dai cpu_dai;
26 struct asoc_simple_dai codec_dai;
Kuninori Morimotof2390882012-04-08 21:17:50 -070027};
28
29#endif /* __SIMPLE_CARD_H */