tpm: Avoid qerror_report_err() outside QMP command handlers
qerror_report_err() is a transitional interface to help with converting existing monitor commands to QMP. It should not be used elsewhere. Replace by error_report_err() in initial startup helper configure_tpm(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
29b762f5f0
commit
bc09a287d8
6
tpm.c
6
tpm.c
@ -162,8 +162,7 @@ static int configure_tpm(QemuOpts *opts)
|
||||
/* validate backend specific opts */
|
||||
qemu_opts_validate(opts, be->opts, &local_err);
|
||||
if (local_err) {
|
||||
qerror_report_err(local_err);
|
||||
error_free(local_err);
|
||||
error_report_err(local_err);
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -174,8 +173,7 @@ static int configure_tpm(QemuOpts *opts)
|
||||
|
||||
tpm_backend_open(drv, &local_err);
|
||||
if (local_err) {
|
||||
qerror_report_err(local_err);
|
||||
error_free(local_err);
|
||||
error_report_err(local_err);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user