diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-10-21 05:25:58 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-12-10 12:15:11 -0500 |
commit | e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8 (patch) | |
tree | 342bf50f0e243a707b80d6f96dc6f8d8dbcd0bd7 /include/hw | |
parent | 0546c0609cb5a8d90c1cbac8e0d64b5a048bbb19 (diff) | |
download | qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.zip qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.tar.gz qemu-e0d17dfd22348eab63c5e19b7ee9c9212c2b8af8.tar.bz2 |
vl: move various initialization routines out of qemu_init
Some very simple initialization routines can be nested in existing
subsystem-level functions, do that to simplify qemu_init.
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/qdev-core.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index 6ac86db..9fbb22a 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -788,14 +788,6 @@ char *qdev_get_fw_dev_path(DeviceState *dev); char *qdev_get_own_fw_dev_path_from_handler(BusState *bus, DeviceState *dev); /** - * @qdev_machine_init - * - * Initialize platform devices before machine init. This is a hack until full - * support for composition is added. - */ -void qdev_machine_init(void); - -/** * device_legacy_reset: * * Reset a single device (by calling the reset method). |