forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdai.h
More file actions
25 lines (21 loc) · 608 Bytes
/
dai.h
File metadata and controls
25 lines (21 loc) · 608 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2016 Intel Corporation. All rights reserved.
*
* Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
* Keyon Jie <yang.jie@linux.intel.com>
*/
/**
* \file xtos/include/sof/lib/dai.h
* \brief DAI Drivers definition
* \author Liam Girdwood <liam.r.girdwood@linux.intel.com>
* \author Keyon Jie <yang.jie@linux.intel.com>
*/
#ifndef __SOF_LIB_DAI_H__
#define __SOF_LIB_DAI_H__
#ifdef CONFIG_ZEPHYR_NATIVE_DRIVERS
#include <sof/lib/dai-zephyr.h>
#else
#include <sof/lib/dai-legacy.h>
#endif
#endif /* __SOF_LIB_DAI_H__ */