1 /* SPDX-License-Identifier: BSD-3-Clause */
2 /* Copyright(c) 2007-2022 Intel Corporation */
3 /* $FreeBSD$ */
4 #ifndef ADF_KERNEL_TYPES_H
5 #define ADF_KERNEL_TYPES_H
6 
7 #define u64 uint64_t
8 #define u32 uint32_t
9 #define u16 uint16_t
10 #define u8 uint8_t
11 #define s64 int64_t
12 #define s32 int32_t
13 #define s16 int16_t
14 #define s8 int8_t
15 
16 #ifndef __packed
17 #define __packed __attribute__((__packed__))
18 #endif
19 
20 #endif
21