mirror of https://github.com/xqemu/xqemu.git
tpm: remove unnecessary #ifdef CONFIG_TPM
Makefile.objs now checks for $(CONFIG_TPM). Suggested-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
This commit is contained in:
parent
c39f95dc2d
commit
3fdde7e0ac
4
tpm.c
4
tpm.c
|
@ -30,8 +30,6 @@ void tpm_register_model(enum TpmModel model)
|
||||||
tpm_models[model] = true;
|
tpm_models[model] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_TPM
|
|
||||||
|
|
||||||
static const TPMBackendClass *
|
static const TPMBackendClass *
|
||||||
tpm_be_find_by_type(enum TpmType type)
|
tpm_be_find_by_type(enum TpmType type)
|
||||||
{
|
{
|
||||||
|
@ -192,8 +190,6 @@ int tpm_config_parse(QemuOptsList *opts_list, const char *optarg)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CONFIG_TPM */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Walk the list of active TPM backends and collect information about them
|
* Walk the list of active TPM backends and collect information about them
|
||||||
* following the schema description in qapi-schema.json.
|
* following the schema description in qapi-schema.json.
|
||||||
|
|
Loading…
Reference in New Issue