1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
5 * Copyright (C) 2010, Intel Corp.
6 * Huang Ying <ying.huang@intel.com>
9 #ifndef _UAPI_LINUX_MEI_UUID_H_
10 #define _UAPI_LINUX_MEI_UUID_H_
12 #include <linux/types.h>
18 #define UUID_LE(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7) \
20 {{ (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff, \
21 (b) & 0xff, ((b) >> 8) & 0xff, \
22 (c) & 0xff, ((c) >> 8) & 0xff, \
23 (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
25 #define NULL_UUID_LE \
26 UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, \
27 0x00, 0x00, 0x00, 0x00)
29 #endif /* _UAPI_LINUX_MEI_UUID_H_ */