1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2018 Intel Corporation 4 * All rights reserved. 5 */ 6 #ifndef TCTI_DEVICE_H 7 #define TCTI_DEVICE_H 8 9 #include "tcti-common.h" 10 11 #define TCTI_DEVICE_MAGIC 0x89205e72e319e5bbULL 12 13 typedef struct { 14 TSS2_TCTI_COMMON_CONTEXT common; 15 int fd; 16 } TSS2_TCTI_DEVICE_CONTEXT; 17 18 #endif /* TCTI_DEVICE_H */ 19