xref: /linux/sound/soc/mediatek/common/mtk-soc-card.h (revision 33e02dc69afbd8f1b85a51d74d72f139ba4ca623)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * mtk-soc-card.h  --  MediaTek soc card data definition
4  *
5  * Copyright (c) 2022 MediaTek Inc.
6  * Author: Chunxu Li <chunxu.li@mediatek.com>
7  */
8 
9 #ifndef _MTK_SOC_CARD_H_
10 #define _MTK_SOC_CARD_H_
11 
12 struct mtk_platform_card_data;
13 struct mtk_sof_priv;
14 
15 struct mtk_soc_card_data {
16 	const struct mtk_sof_priv *sof_priv;
17 	struct list_head sof_dai_link_list;
18 	struct mtk_platform_card_data *card_data;
19 	void *mach_priv;
20 };
21 
22 #endif
23