1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright(c) 2022 Intel Corporation. All rights reserved.
4  *
5  * Author: Ievgen Ganakov <ievgen.ganakov@intel.com>
6  */
7 
8 /**
9  * \file include/ipc4/kpb.h
10  * \brief KPB module definitions.
11  * NOTE: This ABI uses bit fields and is non portable.
12  */
13 
14 #ifndef __SOF_IPC4_KPB_H__
15 #define __SOF_IPC4_KPB_H__
16 
17 #include "base-config.h"
18 
19 struct ipc4_kpb_module_cfg {
20 	struct ipc4_base_module_cfg base_cfg;
21 } __packed __aligned(4);
22 #endif
23