summaryrefslogtreecommitdiffstats
path: root/softmmu/device_tree.c
diff options
context:
space:
mode:
authorPaolo Bonzini2020-11-02 15:44:36 +0100
committerPaolo Bonzini2020-12-15 18:51:55 +0100
commitf2ce39b4f067fe8b8de6104a2d8ac558d35c330b (patch)
tree0d6c327eb7b5522347c7f465d403829af4f2ec6e /softmmu/device_tree.c
parentppc/spapr: cleanup -machine pseries,nvdimm=X handling (diff)
downloadqemu-f2ce39b4f067fe8b8de6104a2d8ac558d35c330b.tar.gz
qemu-f2ce39b4f067fe8b8de6104a2d8ac558d35c330b.tar.xz
qemu-f2ce39b4f067fe8b8de6104a2d8ac558d35c330b.zip
vl: make qemu_get_machine_opts static
Machine options can be retrieved as properties of the machine object. Encourage that by removing the "easy" accessor to machine options. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'softmmu/device_tree.c')
-rw-r--r--softmmu/device_tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/softmmu/device_tree.c b/softmmu/device_tree.c
index b335dae707..b9a3ddc518 100644
--- a/softmmu/device_tree.c
+++ b/softmmu/device_tree.c
@@ -526,7 +526,7 @@ int qemu_fdt_add_subnode(void *fdt, const char *name)
void qemu_fdt_dumpdtb(void *fdt, int size)
{
- const char *dumpdtb = qemu_opt_get(qemu_get_machine_opts(), "dumpdtb");
+ const char *dumpdtb = current_machine->dumpdtb;
if (dumpdtb) {
/* Dump the dtb to a file and quit */