From: Gerd Hoffmann Date: Thu, 7 May 2015 07:24:00 +0000 (+0200) Subject: uhci: controller is halted after reset X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ca5a21c40d95d7a4e26ea0a304fd2cd8ad4e6ae1;p=qemu.git uhci: controller is halted after reset ... and the status register should say so. Fixes "usbus0: controller did not stop" error printed by freebsd. Signed-off-by: Gerd Hoffmann --- diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c index 64a7d873af..3f0ed62689 100644 --- a/hw/usb/hcd-uhci.c +++ b/hw/usb/hcd-uhci.c @@ -366,7 +366,7 @@ static void uhci_reset(DeviceState *dev) pci_conf[0x6a] = 0x01; /* usb clock */ pci_conf[0x6b] = 0x00; s->cmd = 0; - s->status = 0; + s->status = UHCI_STS_HCHALTED; s->status2 = 0; s->intr = 0; s->fl_base_addr = 0;