23 lines
467 B
C
23 lines
467 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* mtk-soc-card.h -- MediaTek soc card data definition
|
||
|
*
|
||
|
* Copyright (c) 2022 MediaTek Inc.
|
||
|
* Author: Chunxu Li <chunxu.li@mediatek.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef _MTK_SOC_CARD_H_
|
||
|
#define _MTK_SOC_CARD_H_
|
||
|
|
||
|
struct mtk_platform_card_data;
|
||
|
struct mtk_sof_priv;
|
||
|
|
||
|
struct mtk_soc_card_data {
|
||
|
const struct mtk_sof_priv *sof_priv;
|
||
|
struct list_head sof_dai_link_list;
|
||
|
struct mtk_platform_card_data *card_data;
|
||
|
void *mach_priv;
|
||
|
};
|
||
|
|
||
|
#endif
|