ae23c9
From ff372341353d79db7e5a963d013bc6341d033337 Mon Sep 17 00:00:00 2001
ae23c9
From: Danilo de Paula <ddepaula@redhat.com>
ae23c9
Date: Wed, 22 May 2019 20:24:34 +0100
ae23c9
Subject: [PATCH 12/12] hw/pci: Add missing include
ae23c9
MIME-Version: 1.0
ae23c9
Content-Type: text/plain; charset=UTF-8
ae23c9
Content-Transfer-Encoding: 8bit
ae23c9
ae23c9
RH-Author: Danilo de Paula <ddepaula@redhat.com>
ae23c9
Message-id: <20190522202434.2529-3-ddepaula@redhat.com>
ae23c9
Patchwork-id: 88165
ae23c9
O-Subject: [RHEL-8.1.0 qemu-kvm PATCH 2/2] hw/pci: Add missing include
ae23c9
Bugzilla: 1712946
ae23c9
RH-Acked-by: Gerd Hoffmann <kraxel@redhat.com>
ae23c9
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
ae23c9
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
ae23c9
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
ae23c9
ae23c9
From: Philippe Mathieu-Daudé <f4bug@amsat.org>
ae23c9
ae23c9
Noted while refactoring:
ae23c9
ae23c9
      CC      mips-softmmu/hw/mips/gt64xxx_pci.o
ae23c9
    In file included from include/hw/pci-host/gt64xxx.h:2,
ae23c9
                     from hw/mips/gt64xxx_pci.c:30:
ae23c9
    include/hw/pci/pci_bus.h:23:5: error: unknown type name ‘PCIIOMMUFunc’
ae23c9
         PCIIOMMUFunc iommu_fn;
ae23c9
         ^~~~~~~~~~~~
ae23c9
    include/hw/pci/pci_bus.h:27:5: error: unknown type name ‘pci_set_irq_fn’
ae23c9
         pci_set_irq_fn set_irq;
ae23c9
         ^~~~~~~~~~~~~~
ae23c9
    include/hw/pci/pci_bus.h:28:5: error: unknown type name ‘pci_map_irq_fn’
ae23c9
         pci_map_irq_fn map_irq;
ae23c9
         ^~~~~~~~~~~~~~
ae23c9
    include/hw/pci/pci_bus.h:29:5: error: unknown type name ‘pci_route_irq_fn’
ae23c9
         pci_route_irq_fn route_intx_to_irq;
ae23c9
         ^~~~~~~~~~~~~~~~
ae23c9
    include/hw/pci/pci_bus.h:31:24: error: ‘PCI_SLOT_MAX’ undeclared here (not in a function)
ae23c9
         PCIDevice *devices[PCI_SLOT_MAX * PCI_FUNC_MAX];
ae23c9
                            ^~~~~~~~~~~~
ae23c9
    include/hw/pci/pci_bus.h:31:39: error: ‘PCI_FUNC_MAX’ undeclared here (not in a function)
ae23c9
         PCIDevice *devices[PCI_SLOT_MAX * PCI_FUNC_MAX];
ae23c9
                                           ^~~~~~~~~~~~
ae23c9
    make[1]: *** [rules.mak:69: hw/mips/gt64xxx_pci.o] Error 1
ae23c9
    make: *** [Makefile:482: subdir-mips-softmmu] Error 2
ae23c9
ae23c9
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
ae23c9
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
ae23c9
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
ae23c9
(cherry picked from commit 2728a57a061af92b476f926b7fb66cb3ac60ab50)
ae23c9
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
ae23c9
---
ae23c9
 include/hw/pci/pci_bus.h | 2 ++
ae23c9
 1 file changed, 2 insertions(+)
ae23c9
ae23c9
diff --git a/include/hw/pci/pci_bus.h b/include/hw/pci/pci_bus.h
ae23c9
index b7da8f5..dfb7575 100644
ae23c9
--- a/include/hw/pci/pci_bus.h
ae23c9
+++ b/include/hw/pci/pci_bus.h
ae23c9
@@ -1,6 +1,8 @@
ae23c9
 #ifndef QEMU_PCI_BUS_H
ae23c9
 #define QEMU_PCI_BUS_H
ae23c9
 
ae23c9
+#include "hw/pci/pci.h"
ae23c9
+
ae23c9
 /*
ae23c9
  * PCI Bus datastructures.
ae23c9
  *
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9