From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40175) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRL-0003gK-Ts for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrTRE-0002Ic-CD for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:50718) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrTRE-0002IF-51 for qemu-devel@nongnu.org; Mon, 02 Jun 2014 10:42:12 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s52EgBDT006335 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 2 Jun 2014 10:42:11 -0400 From: Gerd Hoffmann Date: Mon, 2 Jun 2014 16:41:57 +0200 Message-Id: <1401720127-32546-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1401720127-32546-1-git-send-email-kraxel@redhat.com> References: <1401720127-32546-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 01/10] qtest: fix qpci_config_writel List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Found by Paolo. Signed-off-by: Gerd Hoffmann --- tests/libqos/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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_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); } -- 1.8.3.1