From: Gerd Hoffmann Date: Thu, 8 May 2014 08:54:33 +0000 (+0200) Subject: qtest: fix qpci_config_writel X-Git-Tag: v2.1.0-rc0~91^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad489e9346273e71facdf786b811600688ab2149;p=thirdparty%2Fqemu.git qtest: fix qpci_config_writel Found by Paolo. Signed-off-by: Gerd Hoffmann --- diff --git a/tests/libqos/pci.c b/tests/libqos/pci.c index 7e0907b5141..c9a0b9134a9 100644 --- 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_writew(dev->bus, dev->devfn, offset, value); + dev->bus->config_writel(dev->bus, dev->devfn, offset, value); }