forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabi_dbg.h
More file actions
29 lines (23 loc) · 703 Bytes
/
abi_dbg.h
File metadata and controls
29 lines (23 loc) · 703 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
26
27
28
29
/* SPDX-License-Identifier: BSD-3-Clause
*
* Copyright(c) 2020 Intel Corporation. All rights reserved.
*
* Author: Marcin Maka <marcin.maka@linux.intel.com>
*/
/**
* \file include/user/abi_dbg.h
* \brief ABI definitions for debug interfaces accessed by user space apps.
* \author Marcin Maka <marcin.maka@linux.intel.com>
*
* Follows the rules documented in include/user/abi.h.
*/
#include <kernel/abi.h>
#ifndef __USER_ABI_DBG_H__
#define __USER_ABI_DBG_H__
#define SOF_ABI_DBG_MAJOR 5
#define SOF_ABI_DBG_MINOR 3
#define SOF_ABI_DBG_PATCH 0
#define SOF_ABI_DBG_VERSION SOF_ABI_VER(SOF_ABI_DBG_MAJOR, \
SOF_ABI_DBG_MINOR, \
SOF_ABI_DBG_PATCH)
#endif /* __USER_ABI_DBG_H__ */