diff options
author | 2015-01-06 15:29:13 +0200 | |
---|---|---|
committer | 2015-01-07 16:16:28 +0100 | |
commit | 759bf45d81a892c359fa1a3848c36dcd74b6a42b (patch) | |
tree | ae076114b4aa9bc6adb1fb4625acc811560635f0 | |
parent | hw/ppc: modified the condition for usb controllers to be created for some ppc machines (diff) | |
download | qemu-759bf45d81a892c359fa1a3848c36dcd74b6a42b.tar.xz qemu-759bf45d81a892c359fa1a3848c36dcd74b6a42b.zip |
hw/machine: added machine_usb wrapper
Following QOM convention, object properties should
not be accessed directly.
Signed-off-by: Marcel Apfelbaum <marcel@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r-- | hw/core/machine.c | 5 | ||||
-rw-r--r-- | include/hw/boards.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index a0ae5f94ce..fbd91be575 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -398,6 +398,11 @@ static void machine_finalize(Object *obj) g_free(ms->firmware); } +bool machine_usb(MachineState *machine) +{ + return machine->usb; +} + static const TypeInfo machine_info = { .name = TYPE_MACHINE, .parent = TYPE_OBJECT, diff --git a/include/hw/boards.h b/include/hw/boards.h index e0a67903ef..3ddc449bb6 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -65,6 +65,8 @@ int qemu_register_machine(QEMUMachine *m); MachineClass *find_default_machine(void); extern MachineState *current_machine; +bool machine_usb(MachineState *machine); + /** * MachineClass: * @qemu_machine: #QEMUMachine |