brintos

brintos / linux-shallow public Read only

0
0
Text · 479 B · 62dd472 Raw
24 lines · c
1/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */2/*3 * Copyright(c) 2021 Mediatek Corporation. All rights reserved.4 *5 * Author: Bo Pan <bo.pan@mediatek.com>6 */7 8#ifndef __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__9#define __INCLUDE_SOUND_SOF_DAI_MEDIATEK_H__10 11#include <sound/sof/header.h>12 13struct sof_ipc_dai_mtk_afe_params {14	struct sof_ipc_hdr hdr;15	u32 channels;16	u32 rate;17	u32 format;18	u32 stream_id;19	u32 reserved[4]; /* reserve for future */20} __packed;21 22#endif23 24