From: bellard Date: Sat, 19 Nov 2005 17:43:37 +0000 (+0000) Subject: USB reset typo (Lonnie Mendez) X-Git-Tag: release_0_8_1~273 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb;p=thirdparty%2Fqemu.git USB reset typo (Lonnie Mendez) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1625 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 0f0c185aae0..732b76a818e 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -191,7 +191,7 @@ static void uhci_ioport_writew(void *opaque, uint32_t addr, uint32_t val) uhci_reset(s); return; } - if (val & UHCI_CMD_GRESET) { + if (val & UHCI_CMD_HCRESET) { uhci_reset(s); return; }