forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.h
More file actions
22 lines (16 loc) · 631 Bytes
/
types.h
File metadata and controls
22 lines (16 loc) · 631 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: BSD-3-Clause */
#ifndef __TPLG_PARSER_LINUX_TYPES_H__
#define __TPLG_PARSER_LINUX_TYPES_H__
#include <stdint.h>
/*
* This header files allows to include asoc.h for topology parsing to
* non-gcc builds with other C library, e.g. the one that is used by
* xt-xcc compiler. The kernel linux/types.h cannot be used because
* the other definitions there are not compatible with the toolchain.
*/
/* There are minimum types needed for alsa/sound/uapi/asoc.h */
typedef int64_t __le64;
typedef int32_t __le32;
typedef int16_t __le16;
typedef uint8_t __u8;
#endif /* __TPLG_PARSER_LINUX_TYPES_H__ */