[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 01/28] hw/pci/pci-stub: Add msi_enabled() and msi_not
From: |
Thomas Huth |
Subject: |
[Qemu-devel] [PULL 01/28] hw/pci/pci-stub: Add msi_enabled() and msi_notify() to the pci stubs |
Date: |
Sun, 5 May 2019 15:56:47 +0200 |
Some machines have an AHCI adapter, but no PCI. To be able to
compile hw/ide/ahci.c without CONFIG_PCI, we still need the two
functions msi_enabled() and msi_notify() for linking.
This is required for the new Kconfig-like build system, if a user
wants to compile a QEMU binary with just one machine that has AHCI,
but no PCI, like the ARM "cubieboard" for example.
Reviewed-by: Michael S. Tsirkin <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Philippe Mathieu-Daudé <address@hidden>
Signed-off-by: Thomas Huth <address@hidden>
---
hw/pci/pci-stub.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/hw/pci/pci-stub.c b/hw/pci/pci-stub.c
index b941a0e842..c04a5df651 100644
--- a/hw/pci/pci-stub.c
+++ b/hw/pci/pci-stub.c
@@ -53,3 +53,14 @@ uint16_t pci_requester_id(PCIDevice *dev)
g_assert(false);
return 0;
}
+
+/* Required by ahci.c */
+bool msi_enabled(const PCIDevice *dev)
+{
+ return false;
+}
+
+void msi_notify(PCIDevice *dev, unsigned int vector)
+{
+ g_assert_not_reached();
+}
--
2.21.0
- [Qemu-devel] [PULL 00/28] Kconfig for Arm machines, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 01/28] hw/pci/pci-stub: Add msi_enabled() and msi_notify() to the pci stubs,
Thomas Huth <=
- [Qemu-devel] [PULL 02/28] hw/ide/ahci: Add a Kconfig switch for the AHCI-ICH9 device, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 03/28] hw/arm: Express dependencies of the exynos machines with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 04/28] hw/arm: Express dependencies of the highbank machines with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 05/28] hw/arm: Express dependencies of integratorcp with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 07/28] hw/arm: Express dependencies of musicpal with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 06/28] hw/arm: Express dependencies of the fsl-imx31 machine with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 09/28] hw/arm: Express dependencies of stellaris with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 08/28] hw/arm: Express dependencies of the OMAP machines with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 10/28] hw/arm: Express dependencies of realview, versatile and vexpress with Kconfig, Thomas Huth, 2019/05/05
- [Qemu-devel] [PULL 12/28] hw/arm: Express dependencies of xilinx-zynq with Kconfig, Thomas Huth, 2019/05/05