Commit 5e9ab4c4930cb4ebc157f2ab8eaa5f274c031aeb

Authored by bellard
1 parent 7e89463d

USB reset typo (Lonnie Mendez)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1625 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
hw/usb-uhci.c
@@ -191,7 +191,7 @@ static void uhci_ioport_writew(void *opaque, uint32_t addr, uint32_t val) @@ -191,7 +191,7 @@ static void uhci_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
191 uhci_reset(s); 191 uhci_reset(s);
192 return; 192 return;
193 } 193 }
194 - if (val & UHCI_CMD_GRESET) { 194 + if (val & UHCI_CMD_HCRESET) {
195 uhci_reset(s); 195 uhci_reset(s);
196 return; 196 return;
197 } 197 }