diff mbox

usb-uhci: use pci_config_set_revision()

Message ID 1292881525$2258@local
State New
Headers show

Commit Message

Sebastian Herbszt Dec. 20, 2010, 9:45 p.m. UTC
Use pci_config_set_revision().

Signed-off-by: Sebastian Herbszt <herbszt@gmx.de>
diff mbox

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. */