From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38001) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoqiM-0006c8-EC for qemu-devel@nongnu.org; Mon, 26 May 2014 04:57:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WoqiG-00065j-02 for qemu-devel@nongnu.org; Mon, 26 May 2014 04:57:02 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16690) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoqiF-00065L-OQ for qemu-devel@nongnu.org; Mon, 26 May 2014 04:56:55 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4Q8utqG003198 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 26 May 2014 04:56:55 -0400 From: Gerd Hoffmann Date: Mon, 26 May 2014 10:56:40 +0200 Message-Id: <1401094604-7213-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1401094604-7213-1-git-send-email-kraxel@redhat.com> References: <1401094604-7213-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/5] 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