diff options
Diffstat (limited to 'backends/tpm')
-rw-r--r-- | backends/tpm/tpm_emulator.c | 4 | ||||
-rw-r--r-- | backends/tpm/tpm_passthrough.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/backends/tpm/tpm_emulator.c b/backends/tpm/tpm_emulator.c index 2509c8d327..13657d9aba 100644 --- a/backends/tpm/tpm_emulator.c +++ b/backends/tpm/tpm_emulator.c @@ -46,8 +46,8 @@ #define TYPE_TPM_EMULATOR "tpm-emulator" typedef struct TPMEmulator TPMEmulator; -#define TPM_EMULATOR(obj) \ - OBJECT_CHECK(TPMEmulator, (obj), TYPE_TPM_EMULATOR) +DECLARE_INSTANCE_CHECKER(TPMEmulator, TPM_EMULATOR, + TYPE_TPM_EMULATOR) #define TPM_EMULATOR_IMPLEMENTS_ALL_CAPS(S, cap) (((S)->caps & (cap)) == (cap)) diff --git a/backends/tpm/tpm_passthrough.c b/backends/tpm/tpm_passthrough.c index b703f7e412..10722e0a41 100644 --- a/backends/tpm/tpm_passthrough.c +++ b/backends/tpm/tpm_passthrough.c @@ -37,8 +37,8 @@ #define TYPE_TPM_PASSTHROUGH "tpm-passthrough" typedef struct TPMPassthruState TPMPassthruState; -#define TPM_PASSTHROUGH(obj) \ - OBJECT_CHECK(TPMPassthruState, (obj), TYPE_TPM_PASSTHROUGH) +DECLARE_INSTANCE_CHECKER(TPMPassthruState, TPM_PASSTHROUGH, + TYPE_TPM_PASSTHROUGH) /* data structures */ struct TPMPassthruState { |