1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef LINUX_DEVICE_ID_TEE_CLIENT_H 3 #define LINUX_DEVICE_ID_TEE_CLIENT_H 4 5 #ifdef __KERNEL__ 6 #include <linux/uuid.h> 7 #endif 8 9 /** 10 * struct tee_client_device_id - tee based device identifier 11 * @uuid: For TEE based client devices we use the device uuid as 12 * the identifier. 13 */ 14 struct tee_client_device_id { 15 uuid_t uuid; 16 }; 17 18 #endif /* ifndef LINUX_DEVICE_ID_TEE_CLIENT_H */ 19