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