Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0
0002  *
0003  * ASoC simple sound card support
0004  *
0005  * Copyright (C) 2012 Renesas Solutions Corp.
0006  * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
0007  */
0008 
0009 #ifndef __SIMPLE_CARD_H
0010 #define __SIMPLE_CARD_H
0011 
0012 #include <sound/soc.h>
0013 #include <sound/simple_card_utils.h>
0014 
0015 struct asoc_simple_card_info {
0016     const char *name;
0017     const char *card;
0018     const char *codec;
0019     const char *platform;
0020 
0021     unsigned int daifmt;
0022     struct asoc_simple_dai cpu_dai;
0023     struct asoc_simple_dai codec_dai;
0024 };
0025 
0026 #endif /* __SIMPLE_CARD_H */