diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-02 09:44:36 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-12-15 12:51:55 -0500 |
commit | f2ce39b4f067fe8b8de6104a2d8ac558d35c330b (patch) | |
tree | 0d6c327eb7b5522347c7f465d403829af4f2ec6e /hw/ppc/virtex_ml507.c | |
parent | 55810e90cc9a5ca18289c25aa5c1e0e2dc77eadb (diff) | |
download | 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 'hw/ppc/virtex_ml507.c')
-rw-r--r-- | hw/ppc/virtex_ml507.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/virtex_ml507.c b/hw/ppc/virtex_ml507.c index 7f1bca928c..07fe49da0d 100644 --- a/hw/ppc/virtex_ml507.c +++ b/hw/ppc/virtex_ml507.c @@ -152,7 +152,7 @@ static int xilinx_load_device_tree(hwaddr addr, int r; const char *dtb_filename; - dtb_filename = qemu_opt_get(qemu_get_machine_opts(), "dtb"); + dtb_filename = current_machine->dtb; if (dtb_filename) { fdt = load_device_tree(dtb_filename, &fdt_size); if (!fdt) { |