From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43891) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3Oca-0002PH-6V for qemu-devel@nongnu.org; Tue, 23 Dec 2014 07:31:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y3OcO-00055C-8i for qemu-devel@nongnu.org; Tue, 23 Dec 2014 07:31:28 -0500 Received: from e36.co.us.ibm.com ([32.97.110.154]:43354) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y3OcO-00054q-1i for qemu-devel@nongnu.org; Tue, 23 Dec 2014 07:31:16 -0500 Received: from /spool/local by e36.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 23 Dec 2014 05:31:15 -0700 From: Michael Roth Date: Tue, 23 Dec 2014 06:30:29 -0600 Message-Id: <1419337831-16552-16-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1419337831-16552-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1419337831-16552-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v4 15/17] 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, qemu-ppc@nongnu.org, tyreld@linux.vnet.ibm.com, bharata.rao@gmail.com, nfont@linux.vnet.ibm.com Signed-off-by: Michael Roth --- hw/pci/pci.c | 2 +- include/hw/pci/pci.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/pci/pci.c b/hw/pci/pci.c index 371699c..bf16fc8 100644 --- a/hw/pci/pci.c +++ b/hw/pci/pci.c @@ -122,7 +122,7 @@ static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; static QLIST_HEAD(, PCIHostState) pci_host_bridges; -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 97e4257..ae7c3fc 100644 --- a/include/hw/pci/pci.h +++ b/include/hw/pci/pci.h @@ -330,6 +330,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.9.1