diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-19 17:43:37 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-19 17:43:37 +0000 |
commit | 5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb (patch) | |
tree | 01a5076732c9a7265ee680a92e270609473aa909 /hw | |
parent | 7e89463d4a1495bf943aa20013331950916a0f31 (diff) | |
download | qemu-5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb.zip qemu-5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb.tar.gz qemu-5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb.tar.bz2 |
USB reset typo (Lonnie Mendez)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1625 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb-uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 0f0c185..732b76a 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; } |