hw/ppc/spapr: simplify usb controller creation logic Signed-off-by: Marcel Apfelbaum <marcel@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Alexander Graf <agraf@suse.de>
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index d2b8b12..b560459 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c
@@ -1528,9 +1528,10 @@ /* Graphics */ if (spapr_vga_init(phb->bus)) { spapr->has_graphics = true; + machine->usb |= defaults_enabled(); } - if ((spapr->has_graphics && defaults_enabled()) || usb_enabled()) { + if (machine->usb) { pci_create_simple(phb->bus, -1, "pci-ohci"); if (spapr->has_graphics) { usbdevice_create("keyboard");