diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-12 21:39:20 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-02-16 17:30:14 +0100 |
commit | 5cd5e7015962d8d559afb5154888fd34a8526ddd (patch) | |
tree | 071ec5fb47bd2a5a902bc0f4bcd320dd1354e5bd /include/hw/pci/shpc.h | |
parent | 3a8f2a9ce51036ab2d25bcc31114b5cbb72ab44b (diff) | |
download | qemu-5cd5e7015962d8d559afb5154888fd34a8526ddd.tar.gz qemu-5cd5e7015962d8d559afb5154888fd34a8526ddd.tar.bz2 qemu-5cd5e7015962d8d559afb5154888fd34a8526ddd.zip |
pci: split shpc_cleanup and shpc_free
object_unparent should not be called until the parent device is going to be
destroyed. Only remove the capability and do memory_region_del_subregion
at unrealize time. Freeing the data structures is left in shpc_free, to
be called from the instance_finalize callback.
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw/pci/shpc.h')
-rw-r--r-- | include/hw/pci/shpc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/pci/shpc.h b/include/hw/pci/shpc.h index 025bc5b268..9bbea39996 100644 --- a/include/hw/pci/shpc.h +++ b/include/hw/pci/shpc.h @@ -41,6 +41,7 @@ void shpc_reset(PCIDevice *d); int shpc_bar_size(PCIDevice *dev); int shpc_init(PCIDevice *dev, PCIBus *sec_bus, MemoryRegion *bar, unsigned off); void shpc_cleanup(PCIDevice *dev, MemoryRegion *bar); +void shpc_free(PCIDevice *dev); void shpc_cap_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int len); |