1*8d67ca89SAndroid Build Coastguard Worker /* 2*8d67ca89SAndroid Build Coastguard Worker * This file is auto-generated. Modifications will be lost. 3*8d67ca89SAndroid Build Coastguard Worker * 4*8d67ca89SAndroid Build Coastguard Worker * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5*8d67ca89SAndroid Build Coastguard Worker * for more information. 6*8d67ca89SAndroid Build Coastguard Worker */ 7*8d67ca89SAndroid Build Coastguard Worker #ifndef _UAPI_LINUX_MEI_UUID_H_ 8*8d67ca89SAndroid Build Coastguard Worker #define _UAPI_LINUX_MEI_UUID_H_ 9*8d67ca89SAndroid Build Coastguard Worker #include <linux/types.h> 10*8d67ca89SAndroid Build Coastguard Worker typedef struct { 11*8d67ca89SAndroid Build Coastguard Worker __u8 b[16]; 12*8d67ca89SAndroid Build Coastguard Worker } uuid_le; 13*8d67ca89SAndroid Build Coastguard Worker #define UUID_LE(a,b,c,d0,d1,d2,d3,d4,d5,d6,d7) \ 14*8d67ca89SAndroid Build Coastguard Worker ((uuid_le) \ 15*8d67ca89SAndroid Build Coastguard Worker { { (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*8d67ca89SAndroid Build Coastguard Worker #define NULL_UUID_LE UUID_LE(0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00) 17*8d67ca89SAndroid Build Coastguard Worker #endif 18