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 | struct snd_soc_component *accdet; |
20 | void *mach_priv; |
21 | }; |
22 | |
23 | #endif |
24 |