4 * Copyright (C) 2011-2013 IBM Corporation
7 * Stefan Berger <stefanb@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
15 #include "qemu/option.h"
17 typedef struct TPMState TPMState
;
19 int tpm_config_parse(QemuOptsList
*opts_list
, const char *optarg
);
21 void tpm_cleanup(void);
23 #define TYPE_TPM_TIS "tpm-tis"
25 static inline bool tpm_find(void)
27 return object_resolve_path_type("", TYPE_TPM_TIS
, NULL
);
30 #endif /* QEMU_TPM_H */