From patchwork Thu Jun 14 04:52:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Williamson X-Patchwork-Id: 164813 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5C117B7022 for ; Thu, 14 Jun 2012 14:52:29 +1000 (EST) Received: from localhost ([::1]:57659 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sf22l-0004ui-3a for incoming@patchwork.ozlabs.org; Thu, 14 Jun 2012 00:52:27 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49361) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sf22W-0004if-Od for qemu-devel@nongnu.org; Thu, 14 Jun 2012 00:52:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sf22V-0004v6-4p for qemu-devel@nongnu.org; Thu, 14 Jun 2012 00:52:12 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sf22U-0004sp-SV for qemu-devel@nongnu.org; Thu, 14 Jun 2012 00:52:11 -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 q5E4q90D012929 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 14 Jun 2012 00:52:09 -0400 Received: from bling.home (ovpn-116-19.ams2.redhat.com [10.36.116.19]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q5E4q7Cs006512; Thu, 14 Jun 2012 00:52:07 -0400 From: Alex Williamson To: mst@redhat.com Date: Wed, 13 Jun 2012 22:52:06 -0600 Message-ID: <20120614045205.11034.781.stgit@bling.home> In-Reply-To: <20120614044751.11034.87619.stgit@bling.home> References: <20120614044751.11034.87619.stgit@bling.home> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.25 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: jan.kiszka@siemens.com, qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH v2 6/6] msix: Fix last PCIDevice naming inconsitency X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The previous patches fixed almost all the inconsistent names used for PCIDevice in msix.c, fix the one remaining transgression. Signed-off-by: Alex Williamson --- hw/msix.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hw/msix.h b/hw/msix.h index 14b1a2e..1786e27 100644 --- a/hw/msix.h +++ b/hw/msix.h @@ -11,8 +11,7 @@ int msix_init(PCIDevice *dev, unsigned short nentries, int msix_init_exclusive_bar(PCIDevice *dev, unsigned short nentries, uint8_t bar_nr); -void msix_write_config(PCIDevice *pci_dev, uint32_t address, - uint32_t val, int len); +void msix_write_config(PCIDevice *dev, uint32_t address, uint32_t val, int len); void msix_uninit(PCIDevice *dev, MemoryRegion *table_bar, MemoryRegion *pba_bar);