All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] hw/pci/pci-stub: Add msi_enabled() and msi_notify() to the pci stubs
@ 2019-02-19 16:07 ` Thomas Huth
  0 siblings, 0 replies; 20+ messages in thread
From: Thomas Huth @ 2019-02-19 16:07 UTC (permalink / raw)
  To: Marcel Apfelbaum, Michael S. Tsirkin
  Cc: qemu-devel, qemu-trivial, yang.zhong, pbonzini

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 upcoming 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.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
 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 b941a0e..c04a5df 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();
+}
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2019-02-21 18:00 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-19 16:07 [Qemu-trivial] [PATCH] hw/pci/pci-stub: Add msi_enabled() and msi_notify() to the pci stubs Thomas Huth
2019-02-19 16:07 ` [Qemu-devel] " Thomas Huth
2019-02-19 17:23 ` [Qemu-trivial] " Philippe Mathieu-Daudé
2019-02-19 17:23   ` Philippe Mathieu-Daudé
2019-02-19 18:24 ` [Qemu-trivial] " Paolo Bonzini
2019-02-19 18:24   ` [Qemu-devel] " Paolo Bonzini
2019-02-19 20:23   ` [Qemu-trivial] " Michael S. Tsirkin
2019-02-19 20:23     ` [Qemu-devel] " Michael S. Tsirkin
2019-02-19 23:19     ` [Qemu-trivial] " Paolo Bonzini
2019-02-19 23:19       ` [Qemu-devel] " Paolo Bonzini
2019-02-20  3:35       ` [Qemu-trivial] " Michael S. Tsirkin
2019-02-20  3:35         ` [Qemu-devel] " Michael S. Tsirkin
2019-02-19 20:19 ` [Qemu-trivial] " Michael S. Tsirkin
2019-02-19 20:19   ` [Qemu-devel] " Michael S. Tsirkin
2019-02-20  6:24   ` [Qemu-trivial] " Thomas Huth
2019-02-20  6:24     ` [Qemu-devel] " Thomas Huth
2019-02-21 16:55     ` [Qemu-trivial] " Michael S. Tsirkin
2019-02-21 16:55       ` [Qemu-devel] " Michael S. Tsirkin
2019-02-21 18:00       ` [Qemu-trivial] " Paolo Bonzini
2019-02-21 18:00         ` [Qemu-devel] " Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.