summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2015-03-23 18:05:28 +0100
committerAlexander Graf <agraf@suse.de>2015-03-25 22:49:47 +0100
commitc6e765035bc5e0d73231c2c0fbd54620201d6655 (patch)
tree05e1631846d0ec05a624c5ee159b9a431fe1385b /include
parent5b2128d27051fe036ac36e8e860e72490b27a369 (diff)
downloadqemu-c6e765035bc5e0d73231c2c0fbd54620201d6655.tar.gz
powerpc: fix -machine usb=no for newworld and pseries machines
Capture the explicit setting of "usb=no" into a separate bool, and use it to skip the update of machine->usb in the board init function. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/hw/boards.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h
index 78838d13d4..1f118811a2 100644
--- a/include/hw/boards.h
+++ b/include/hw/boards.h
@@ -146,6 +146,7 @@ struct MachineState {
bool dump_guest_core;
bool mem_merge;
bool usb;
+ bool usb_disabled;
char *firmware;
bool iommu;
bool suppress_vmdesc;