1 /* SPDX-License-Identifier: GPL-2.0 2 * 3 * ASoC simple sound card support 4 * 5 * Copyright (C) 2012 Renesas Solutions Corp. 6 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> 7 */ 8 9 #ifndef __SIMPLE_CARD_H 10 #define __SIMPLE_CARD_H 11 12 #include <sound/soc.h> 13 #include <sound/simple_card_utils.h> 14 15 /* REMOVE ME */ 16 #define asoc_simple_card_info simple_util_info 17 18 struct simple_util_info { 19 const char *name; 20 const char *card; 21 const char *codec; 22 const char *platform; 23 24 unsigned int daifmt; 25 struct simple_util_dai cpu_dai; 26 struct simple_util_dai codec_dai; 27 }; 28 29 #endif /* __SIMPLE_CARD_H */ 30