commit | ad489e9346273e71facdf786b811600688ab2149 | [log] [tgz] |
---|---|---|
author | Gerd Hoffmann <kraxel@redhat.com> | Thu May 08 10:54:33 2014 +0200 |
committer | Gerd Hoffmann <kraxel@redhat.com> | Mon Jun 02 16:28:59 2014 +0200 |
tree | 03bd1ba653322800ecb80107e40379fe3637c64f | |
parent | 9bb931802e6ab5ab6947e3cb9cea934fc0724274 [diff] |
qtest: fix qpci_config_writel Found by Paolo. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
diff --git a/tests/libqos/pci.c b/tests/libqos/pci.c index 7e0907b..c9a0b91 100644 --- a/tests/libqos/pci.c +++ b/tests/libqos/pci.c
@@ -103,7 +103,7 @@ void qpci_config_writel(QPCIDevice *dev, uint8_t offset, uint32_t value) { - dev->bus->config_writew(dev->bus, dev->devfn, offset, value); + dev->bus->config_writel(dev->bus, dev->devfn, offset, value); }