projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bb9318
)
qtest: fix qpci_config_writel
author
Gerd Hoffmann
<kraxel@redhat.com>
Thu, 8 May 2014 08:54:33 +0000
(10:54 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Mon, 2 Jun 2014 14:28:59 +0000
(16:28 +0200)
Found by Paolo.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
tests/libqos/pci.c
patch
|
blob
|
history
diff --git
a/tests/libqos/pci.c
b/tests/libqos/pci.c
index 7e0907b51413604e764276ceda93e331d1e93b37..c9a0b9134a917fea571d4a5bfbd9d31f0b64b684 100644
(file)
--- a/
tests/libqos/pci.c
+++ b/
tests/libqos/pci.c
@@
-103,7
+103,7
@@
void qpci_config_writew(QPCIDevice *dev, uint8_t offset, uint16_t value)
void qpci_config_writel(QPCIDevice *dev, uint8_t offset, uint32_t value)
{
- dev->bus->config_write
w
(dev->bus, dev->devfn, offset, value);
+ dev->bus->config_write
l
(dev->bus, dev->devfn, offset, value);
}