Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[linux-2.6-block.git] / include / sound / simple_card.h
CommitLineData
d573454d
KM
1/* SPDX-License-Identifier: GPL-2.0
2 *
f2390880
KM
3 * ASoC simple sound card support
4 *
5 * Copyright (C) 2012 Renesas Solutions Corp.
6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
f2390880
KM
7 */
8
9#ifndef __SIMPLE_CARD_H
10#define __SIMPLE_CARD_H
11
12#include <sound/soc.h>
cecdef36 13#include <sound/simple_card_utils.h>
f2390880 14
b5a95c5b 15struct simple_util_info {
f2390880
KM
16 const char *name;
17 const char *card;
f2390880
KM
18 const char *codec;
19 const char *platform;
a4a2992c
KM
20
21 unsigned int daifmt;
b5a95c5b
KM
22 struct simple_util_dai cpu_dai;
23 struct simple_util_dai codec_dai;
f2390880
KM
24};
25
26#endif /* __SIMPLE_CARD_H */