1 /* 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 */ 7 #ifndef _UAPI_LINUX_MEI_UUID_H_ 8 #define _UAPI_LINUX_MEI_UUID_H_ 9 #include <linux/types.h> 10 typedef 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 18