blob: a862f6fa6665e20b5f8d2544a439a67e561dca2c [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Christopher Ferris37c3f3c2023-07-10 10:59:05 -07007#ifndef _UAPI_LINUX_MEI_UUID_H_
8#define _UAPI_LINUX_MEI_UUID_H_
9#include <linux/types.h>
10typedef struct {
11 __u8 b[16];
12} uuid_le;
13#define UUID_LE(a,b,c,d0,d1,d2,d3,d4,d5,d6,d7) \
14((uuid_le) \
15{ { (a) & 0xff, ((a) >> 8) & 0xff, ((a) >> 16) & 0xff, ((a) >> 24) & 0xff, (b) & 0xff, ((b) >> 8) & 0xff, (c) & 0xff, ((c) >> 8) & 0xff, (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) } })
16#define NULL_UUID_LE UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
17#endif