mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
b8cbc738de
commit
4ee9ced979
|
@ -1528,9 +1528,10 @@ static void ppc_spapr_init(MachineState *machine)
|
||||||
/* Graphics */
|
/* Graphics */
|
||||||
if (spapr_vga_init(phb->bus)) {
|
if (spapr_vga_init(phb->bus)) {
|
||||||
spapr->has_graphics = true;
|
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");
|
pci_create_simple(phb->bus, -1, "pci-ohci");
|
||||||
if (spapr->has_graphics) {
|
if (spapr->has_graphics) {
|
||||||
usbdevice_create("keyboard");
|
usbdevice_create("keyboard");
|
||||||
|
|
Loading…
Reference in New Issue