From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47905) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VohUG-0004Ml-Sg for qemu-devel@nongnu.org; Thu, 05 Dec 2013 17:33:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VohU6-00049e-I3 for qemu-devel@nongnu.org; Thu, 05 Dec 2013 17:33:36 -0500 Received: from e8.ny.us.ibm.com ([32.97.182.138]:55302) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VohU6-00049F-Bo for qemu-devel@nongnu.org; Thu, 05 Dec 2013 17:33:26 -0500 Received: from /spool/local by e8.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 5 Dec 2013 17:33:26 -0500 From: Michael Roth Date: Thu, 5 Dec 2013 16:33:00 -0600 Message-Id: <1386282785-466-10-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1386282785-466-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1386282785-466-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v2 09/14] pci: make pci_bar useable outside pci.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aik@ozlabs.ru, agraf@suse.de, ncmike@ncultra.org, paulus@samba.org, tyreld@linux.vnet.ibm.com, nfont@linux.vnet.ibm.com, qemu-ppc@nongnu.org Signed-off-by: Michael Roth --- hw/pci/pci.c | 3 ++- include/hw/pci/pci.h | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index ed32059..f15bbb0 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -103,7 +103,8 @@ static const VMStateDescription vmstate_pcibus = { VMSTATE_END_OF_LIST() } }; -static int pci_bar(PCIDevice *d, int reg) + +int pci_bar(PCIDevice *d, int reg) { uint8_t type; diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h index b783e68..8fe7c5d 100644 --- a/include/hw/pci/pci.h +++ b/include/hw/pci/pci.h @@ -325,6 +325,7 @@ void pci_device_save(PCIDevice *s, QEMUFile *f); int pci_device_load(PCIDevice *s, QEMUFile *f); MemoryRegion *pci_address_space(PCIDevice *dev); MemoryRegion *pci_address_space_io(PCIDevice *dev); +int pci_bar(PCIDevice *d, int reg); typedef void (*pci_set_irq_fn)(void *opaque, int irq_num, int level); typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num); -- 1.7.9.5