| Submitter | Sebastian Herbszt |
|---|---|
| Date | Dec. 20, 2010, 9:45 p.m. |
| Message ID | <1292881525$2258@local> |
| Download | mbox | patch |
| Permalink | /patch/76237/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index b9b822f..5b3bf21 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -1106,7 +1106,7 @@ static int usb_uhci_common_initfn(UHCIState *s) uint8_t *pci_conf = s->dev.config; int i; - pci_conf[PCI_REVISION_ID] = 0x01; // revision number + pci_config_set_revision(pci_conf, 0x01); // revision number pci_conf[PCI_CLASS_PROG] = 0x00; pci_config_set_class(pci_conf, PCI_CLASS_SERIAL_USB); /* TODO: reset value should be 0. */
Use pci_config_set_revision(). Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>