diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-06-11 12:57:16 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-18 12:06:21 +0200 |
commit | c54779f9623ba189fc79f249f8ee1309b73320db (patch) | |
tree | f8204da505783a4d844f2c37b5a83e8b060f41df /hw/tpm | |
parent | 469b046ead0671932ff3af8d6f95045b19b186ef (diff) | |
download | qemu-c54779f9623ba189fc79f249f8ee1309b73320db.tar.gz qemu-c54779f9623ba189fc79f249f8ee1309b73320db.tar.bz2 qemu-c54779f9623ba189fc79f249f8ee1309b73320db.zip |
tpm_tis: remove instance_finalize callback
It is never used, since ISA device are not hot-unpluggable.
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/tpm')
-rw-r--r-- | hw/tpm/tpm_tis.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/hw/tpm/tpm_tis.c b/hw/tpm/tpm_tis.c index d398c16899..82747ee259 100644 --- a/hw/tpm/tpm_tis.c +++ b/hw/tpm/tpm_tis.c @@ -896,13 +896,6 @@ static void tpm_tis_initfn(Object *obj) &s->mmio); } -static void tpm_tis_uninitfn(Object *obj) -{ - TPMState *s = TPM(obj); - - memory_region_del_subregion(get_system_memory(), &s->mmio); -} - static void tpm_tis_class_init(ObjectClass *klass, void *data) { DeviceClass *dc = DEVICE_CLASS(klass); @@ -918,7 +911,6 @@ static const TypeInfo tpm_tis_info = { .parent = TYPE_ISA_DEVICE, .instance_size = sizeof(TPMState), .instance_init = tpm_tis_initfn, - .instance_finalize = tpm_tis_uninitfn, .class_init = tpm_tis_class_init, }; |